fix(check-extension, integration): prevent crash on docker pull failure

This commit is contained in:
Damien Retzinger
2026-06-10 09:01:17 -04:00
parent 8f695ed7f8
commit b7c6614ac3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -302,7 +302,7 @@ jobs:
- name: Upload test sandbox dir - name: Upload test sandbox dir
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
if: failure() if: failure() && steps.magento-version.outputs.version != ''
with: with:
name: sandbox-data-${{ fromJSON(steps.magento-version.outputs.version) }} name: sandbox-data-${{ fromJSON(steps.magento-version.outputs.version) }}
path: ${{ steps.setup-magento.outputs.path }}/dev/tests/integration/tmp/sandbox-* path: ${{ steps.setup-magento.outputs.path }}/dev/tests/integration/tmp/sandbox-*
+1 -1
View File
@@ -183,7 +183,7 @@ jobs:
- name: Upload test sandbox dir - name: Upload test sandbox dir
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
if: failure() if: failure() && steps.magento-version.outputs.version != ''
with: with:
name: sandbox-data-${{ fromJSON(steps.magento-version.outputs.version) }} name: sandbox-data-${{ fromJSON(steps.magento-version.outputs.version) }}
path: /home/runner/work/infrastructure/magento2/dev/tests/integration/tmp/sandbox-* path: /home/runner/work/infrastructure/magento2/dev/tests/integration/tmp/sandbox-*