Update README.md

This commit is contained in:
Sascha Mann
2021-12-27 16:59:48 +01:00
committed by GitHub
parent 20058080ea
commit 8e86b8dd2a

View File

@@ -9,9 +9,9 @@ Using this action is equivalent to including the following step in your workflow
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ inputs.cache-name }}-${{ hashFiles('**/Project.toml') }}
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ inputs.cache-name }}-
${{ runner.os }}-test-${{ env.cache-name }}-
```
## Usage