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 16fb530 commit 1988c19Copy full SHA for 1988c19
.github/workflows/release.yml
@@ -58,7 +58,7 @@ jobs:
58
59
build-binaries:
60
name: Build binaries
61
- if: always() && (github.event.pull_request.merged || (github.event_name == 'workflow_dispatch' && needs.publish-dry-run.result == 'success'))
+ if: ${{ (github.event.pull_request.merged || github.event_name == 'workflow_dispatch') && needs.publish-dry-run.result == 'success' }}
62
strategy:
63
matrix:
64
include:
@@ -146,6 +146,7 @@ jobs:
146
name: Create Release
147
needs: build-binaries
148
runs-on: ubuntu-latest
149
+ if: ${{ (github.event.pull_request.merged || github.event_name == 'workflow_dispatch') && needs.build-binaries.result == 'success' }}
150
steps:
151
- name: Checkout
152
uses: actions/checkout@v6
0 commit comments