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:
Alexander Artemenko 2024-04-18 11:01:51 +03:00 committed by GitHub
commit a5179c83cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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