Merge pull request #33 from ak-coram/extend-cache-key-with-runner-arch
Extend cache key with runner architecture (fixes #32)
This commit is contained in:
commit
a5179c83cc
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ runs:
|
||||||
uses: actions/cache/restore@v4
|
uses: actions/cache/restore@v4
|
||||||
with:
|
with:
|
||||||
path: ${{ inputs.roswell-cache-paths }}
|
path: ${{ inputs.roswell-cache-paths }}
|
||||||
key: roswell-${{ inputs.roswell-version }}-${{ steps.locals.outputs.current-month }}-${{ env.cache-name }}-${{ runner.os }}-${{ env.LISP }}-${{ inputs.cache-suffix }}
|
key: roswell-${{ inputs.roswell-version }}-${{ steps.locals.outputs.current-month }}-${{ env.cache-name }}-${{ runner.os }}-${{ runner.arch }}-${{ env.LISP }}-${{ inputs.cache-suffix }}
|
||||||
|
|
||||||
- if: inputs.cache == 'true' && steps.roswell-cache-restore.outputs.cache-hit == 'true'
|
- if: inputs.cache == 'true' && steps.roswell-cache-restore.outputs.cache-hit == 'true'
|
||||||
name: Restore Path To Cached Files
|
name: Restore Path To Cached Files
|
||||||
|
|
Loading…
Reference in a new issue