We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f936dfa commit 92d33d6Copy full SHA for 92d33d6
.github/workflows/reusable_test-image.yml
@@ -50,6 +50,13 @@ jobs:
50
uses: actions/download-artifact@v4
51
with:
52
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-images
53
+
54
+ - name: Extract image if needed
55
+ run: |
56
+ # gunzip return 2 for warning hence we need to reset
57
+ if [ -f "${{ inputs.image }}.gz" ]; then
58
+ gunzip -q ${{ inputs.image }}.gz || true
59
+ fi
60
61
- name: Run test with QEMU
62
if: inputs.use_qemu == true
0 commit comments