Skip to content

Commit 8186fc0

Browse files
Add debugging for image loading
Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
1 parent e78763a commit 8186fc0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-all-matrix.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ jobs:
193193

194194
- name: Load Linuxkit Docker images into local Docker daemon
195195
run: |
196-
imgs=$(ls "${{ runner.temp }}/hook-*.tar.gz")
196+
ls "${{ runner.temp }}"
197+
imgs=$(ls "${{ runner.temp }}" | grep tar.gz | xargs)
197198
echo "Found hook images: ${imgs}"
198199
for img in ${imgs}; do
199200
echo "extracting and loading image: ${img}"
@@ -210,7 +211,8 @@ jobs:
210211

211212
- name: Load Kernel Docker images into local Docker daemon
212213
run: |
213-
imgs=$(ls "${{ runner.temp }}/kernel-*.tar.gz" | xargs)
214+
ls "${{ runner.temp }}"
215+
imgs=$(ls "${{ runner.temp }}" | grep tar.gz | xargs)
214216
echo "Found kernel images: ${imgs}"
215217
for img in ${imgs}; do
216218
echo "extracting and loading image: ${img}"

0 commit comments

Comments
 (0)