We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5f11db commit 7a62a23Copy full SHA for 7a62a23
.github/workflows/reusable_image_release.yaml
@@ -123,6 +123,11 @@ jobs:
123
release-integration:
124
name: Publish container images to registry
125
needs: [test-nix, test-windows, integration-tests]
126
+ if: |
127
+ always() &&
128
+ (needs.integration-tests.result == 'success' || needs.integration-tests.result == 'skipped') &&
129
+ (needs.test-nix.result == 'success' || needs.test-nix.result == 'skipped') &&
130
+ (needs.test-windows.result == 'success' || needs.test-windows.result == 'skipped')
131
runs-on: ubuntu-latest
132
steps:
133
- name: checkout
0 commit comments