Skip to content

Commit 2b202f0

Browse files
committed
recursive
1 parent d95aae7 commit 2b202f0

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/package_core.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,14 @@ jobs:
2828
- name: Use west repo cache
2929
uses: actions/cache/restore@v4
3030
with:
31-
32-
path: "~/**/.git"
31+
path: "/home/runner/**/.git/"
3332
key: west-git-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
3433
restore-keys: |
3534
west-git-
3635
3736
- name: Dump
3837
run: |
39-
find /home/runner
38+
find /home/runner --name .git
4039
4140
- uses: actions/checkout@v4
4241
with:
@@ -70,10 +69,14 @@ jobs:
7069
name: ${{ env.CORE_ARTIFACT }}
7170
path: ${{ env.CORE_ARTIFACT }}.tar.bz2
7271

72+
- name: Dump
73+
run: |
74+
find /home/runner --name .git
75+
7376
- name: Save west repo cache
7477
uses: actions/cache/save@v4
7578
with:
76-
path: "~/**/.git"
79+
path: "/home/runner/**/.git/"
7780
key: west-git-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
7881

7982
test-core:

0 commit comments

Comments
 (0)