We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e83dc78 commit aef01a3Copy full SHA for aef01a3
1 file changed
.github/workflows/run.yml
@@ -27,7 +27,9 @@ jobs:
27
uses: actions/cache/restore@v4
28
with:
29
path: .dvc/cache
30
- key: ${{ runner.os }}-dvc-cache
+ key: ${{ runner.os }}-dvc-cache-${{ github.sha }}
31
+ restore-keys: |
32
+ ${{ runner.os }}-dvc-cache-
33
- run: calkit config remote-auth
34
env:
35
CALKIT_DVC_TOKEN: ${{ secrets.CALKIT_DVC_TOKEN }}
@@ -41,4 +43,4 @@ jobs:
41
43
uses: actions/cache/save@v4
42
44
45
- key: ${{ steps.cache-dvc-restore.outputs.cache-primary-key }}
46
0 commit comments