mirror of
https://github.com/julia-actions/cache.git
synced 2026-02-12 09:26:53 +08:00
remove "test" from cache name (#66)
This commit is contained in:
committed by
GitHub
parent
75868c023d
commit
ec00ba5d20
@@ -47,9 +47,9 @@ runs:
|
|||||||
id: cache
|
id: cache
|
||||||
with:
|
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) }}"
|
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: |
|
restore-keys: |
|
||||||
${{ runner.os }}-test-${{ inputs.cache-name }}-
|
${{ runner.os }}-${{ inputs.cache-name }}-
|
||||||
|
|
||||||
- id: hit
|
- id: hit
|
||||||
run: echo "cache-hit=$CACHE_HIT" >> $GITHUB_OUTPUT
|
run: echo "cache-hit=$CACHE_HIT" >> $GITHUB_OUTPUT
|
||||||
|
|||||||
Reference in New Issue
Block a user