remove "test" from cache name (#66)

This commit is contained in:
Fons van der Plas
2023-09-09 12:48:52 +02:00
committed by GitHub
parent 75868c023d
commit ec00ba5d20

View File

@@ -47,9 +47,9 @@ runs:
id: cache
with:
path: "${{ format('{0}\n{1}\n{2}\n{3}', steps.paths.outputs.artifacts-path, steps.paths.outputs.packages-path, steps.paths.outputs.registries-path, steps.paths.outputs.precompilation-cache-path) }}"
key: ${{ runner.os }}-test-${{ inputs.cache-name }}-${{ hashFiles('**/Project.toml') }}
key: ${{ runner.os }}-${{ inputs.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ inputs.cache-name }}-
${{ runner.os }}-${{ inputs.cache-name }}-
- id: hit
run: echo "cache-hit=$CACHE_HIT" >> $GITHUB_OUTPUT