Skip to content

Commit 9fc4ff4

Browse files
committed
fix for saving cache
1 parent 81e8c01 commit 9fc4ff4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,12 @@ jobs:
2929
- name: Checkout repository
3030
uses: actions/checkout@v3
3131
- uses: actions/cache/restore@v4
32+
id: restore-cache
3233
with:
3334
path: manifests.txt
3435
key: manifests
36+
restore-keys: |
37+
manifests-
3538
- name: collect manifests
3639
id: collect
3740
run: |
@@ -59,8 +62,8 @@ jobs:
5962
path: manifests.txt
6063
- uses: actions/cache/save@v4
6164
with:
65+
key: manifests-${{ github.run_id }}
6266
path: manifests.txt
63-
key: manifests
6467
build:
6568
needs: prepare
6669
if: ${{ needs.prepare.outputs.do_build != 'false' }}

0 commit comments

Comments
 (0)