We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d70b78d commit f67f84eCopy full SHA for f67f84e
1 file changed
load-docker-image/action.yml
@@ -40,6 +40,12 @@ outputs:
40
runs:
41
using: 'composite'
42
steps:
43
+ - name: Ensure Image Path Exists
44
+ id: mkdir-image-path
45
+ shell: bash
46
+ run: |
47
+ mkdir -p ${{ inputs.image-path }}
48
+
49
- name: Download Docker Image Artifact
50
uses: actions/download-artifact@v4
51
with:
@@ -59,6 +65,8 @@ runs:
59
65
# Check if the tar file exists
60
66
if [ ! -f "${IMAGE}" ]; then
61
67
echo "❌ Docker image file not found: ${IMAGE}"
68
+ echo "Files in image path:"
69
+ ls -al ${{ inputs.image-path }}
62
70
exit 1
63
71
fi
64
72
0 commit comments