fix: use cache key based on run_id and run_attempt
This commit is contained in:
parent
967c194a45
commit
c5eaa34e39
|
@ -6,8 +6,6 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
cache-primary-key: ${{ steps.cache.outputs.cache-primary-key }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js
|
||||
|
@ -23,7 +21,7 @@ jobs:
|
|||
with:
|
||||
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||
path: ./
|
||||
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json','lib/**') }}
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
|
@ -31,7 +29,7 @@ jobs:
|
|||
- uses: actions/cache/restore@v3
|
||||
with:
|
||||
path: .
|
||||
key: ${{ needs.build.outputs.cache-primary-key }}
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
- name: Install SSH key
|
||||
uses: shimataro/ssh-key-action@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in New Issue