File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -197,9 +197,9 @@ jobs:
197197 imgs=$(ls "${{ runner.temp }}" | grep tar.gz | xargs)
198198 echo "Found hook images: ${imgs}"
199199 for img in ${imgs}; do
200- echo "extracting and loading image: ${img}"
201- gunzip -d "${img}"
202- docker load --input "${img%.*}"
200+ echo "extracting and loading image: ${{ runner.temp }}/${ img}"
201+ gunzip -d "${{ runner.temp }}/${ img}"
202+ docker load --input "${{ runner.temp }}/${ img%.*}"
203203 done
204204 docker images
205205
@@ -213,11 +213,11 @@ jobs:
213213 run : |
214214 ls "${{ runner.temp }}"
215215 imgs=$(ls "${{ runner.temp }}" | grep tar.gz | xargs)
216- echo "Found kernel images: ${imgs}"
216+ echo "Found kernel images: ${{ runner.temp }}/${ imgs}"
217217 for img in ${imgs}; do
218- echo "extracting and loading image: ${img}"
219- gunzip -d "${img}"
220- docker load --input "${img%.*}"
218+ echo "extracting and loading image: ${{ runner.temp }}/${ img}"
219+ gunzip -d "${{ runner.temp }}/${ img}"
220+ docker load --input "${{ runner.temp }}/${ img%.*}"
221221 done
222222 docker images
223223
You can’t perform that action at this time.
0 commit comments