fix cache keys
This commit is contained in:
parent
1cb8e9e1b1
commit
51f20895e5
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ jobs:
|
||||||
name: restore pnpm cache
|
name: restore pnpm cache
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.pnpm-cache-dir.outputs.dir }}
|
path: ${{ steps.pnpm-cache-dir.outputs.dir }}
|
||||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-pnpm-
|
${{ runner.os }}-pnpm-
|
||||||
- name: pnpm install
|
- name: pnpm install
|
||||||
|
@ -33,7 +33,7 @@ jobs:
|
||||||
if: steps.pnpm-cache.outputs.cache-hit != 'true'
|
if: steps.pnpm-cache.outputs.cache-hit != 'true'
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.pnpm-cache-dir.outputs.dir }}
|
path: ${{ steps.pnpm-cache-dir.outputs.dir }}
|
||||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml) }}
|
key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml) }}
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v3
|
||||||
id: nuget-cache
|
id: nuget-cache
|
||||||
|
|
Loading…
Reference in a new issue