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 8ce89c9 commit 168734bCopy full SHA for 168734b
.github/workflows/dockerimage.yml
@@ -55,3 +55,15 @@ jobs:
55
platforms: linux/arm64
56
push: ${{ (github.event_name != 'pull_request') && (github.repository == 'laradock/php-fpm') && (github.ref == 'refs/heads/master') }}
57
tags: ${{ steps.meta.outputs.tags }}
58
+
59
+ final_check:
60
+ runs-on: ubuntu-latest
61
+ needs: build
62
+ if: always()
63
+ steps:
64
+ - name: Fail if any matrix job failed
65
+ run: |
66
+ if [ "${{ needs.build.result }}" == "failure" ]; then
67
+ echo "Some matrix jobs failed, marking workflow as failed."
68
+ exit 1
69
+ fi
0 commit comments