Improve the cache keys to prevent clashes for the wrong type of build
This commit is contained in:
5
.github/workflows/javascript_builds.yml
vendored
5
.github/workflows/javascript_builds.yml
vendored
@@ -29,9 +29,10 @@ jobs:
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ${{github.workspace}}/.scons_cache/
|
||||
key: ${{github.job}}-${{github.sha}}
|
||||
key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
|
||||
restore-keys: |
|
||||
${{github.job}}-${{github.sha}}
|
||||
${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
|
||||
${{github.job}}-${GITHUB_REF##*/}
|
||||
${{github.job}}
|
||||
|
||||
# Additional cache for Emscripten generated system libraries
|
||||
|
||||
Reference in New Issue
Block a user