We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c392ba commit 62a8769Copy full SHA for 62a8769
1 file changed
.github/workflows/ci.yml
@@ -48,6 +48,11 @@ jobs:
48
uses: ./.github/workflows/container.yml
49
50
outputs:
51
- if: ${{ needs.changes.outputs.outputs == 'true' || startsWith(github.ref, 'refs/tags/') }}
+ if: |
52
+ always()
53
+ && contains(needs.*.result, 'success')
54
+ && !contains(needs.*.result, 'failure')
55
+ && (needs.changes.outputs.outputs == 'true'
56
+ || startsWith(github.ref, 'refs/tags/'))
57
needs: [ changes, container ]
58
uses: ./.github/workflows/outputs.yml
0 commit comments