Skip to content

Commit 709332b

Browse files
authored
fix(cd): missing condition
1 parent 8cd00c1 commit 709332b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
build-binaries:
6060
name: Build binaries
61-
if: always() && (github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && needs.publish-dry-run.result == 'success'))
61+
if: always() && (if: github.event.pull_request.merged || (github.event_name == 'workflow_dispatch' && needs.publish-dry-run.result == 'success'))
6262
strategy:
6363
matrix:
6464
include:

0 commit comments

Comments
 (0)