fix: cache hit path
parent
b5f560103f
commit
0bca7e7e42
|
@ -73,18 +73,18 @@ jobs:
|
|||
- name: Setup electron cahce
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ env.HOME }}/.cache/electron
|
||||
path: ${{ github.workspace }}/.cache/electron
|
||||
key: ${{ runner.os }}-electron-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-electron-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
${{ runner.os }}-electron-cache-
|
||||
|
||||
- name: Setup electron-builder cahce
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ env.HOME }}/.cache/electron-builder
|
||||
path: ${{ github.workspace }}/.cache/electron-builder
|
||||
key: ${{ runner.os }}-electron-builder-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-electron-builder-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
${{ runner.os }}-electron-builder-cache-
|
||||
|
||||
- name: pnpm install
|
||||
run: |
|
||||
|
|
|
@ -76,18 +76,18 @@ jobs:
|
|||
- name: Setup electron cahce
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ env.HOME }}/.cache/electron
|
||||
path: ${{ github.workspace }}/.cache/electron
|
||||
key: ${{ runner.os }}-electron-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-electron-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
${{ runner.os }}-electron-cache-
|
||||
|
||||
- name: Setup electron-builder cahce
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ env.HOME }}/.cache/electron-builder
|
||||
path: ${{ github.workspace }}/.cache/electron-builder
|
||||
key: ${{ runner.os }}-electron-builder-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-electron-builder-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
${{ runner.os }}-electron-builder-cache-
|
||||
|
||||
- name: pnpm install
|
||||
run: |
|
||||
|
|
Loading…
Reference in New Issue