Skip to content

Commit e72103f

Browse files
authored
Fix condition in release draft step (#4101)
1 parent 25e8e5b commit e72103f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
with:
216216
minor-label: "enhancement"
217217
major-label: "change"
218-
publish: ${{ inputs.is_production_release && (inputs.dry_run == false || inputs.dry_run == null) }}
218+
publish: ${{ inputs.is_production_release && (inputs.dry_run == false || inputs.dry_run == null) && true || false }}
219219
collapse-after: 20
220220
notes-header: |
221221
*Below is the auto-generated changelog, which includes all PRs that went into the release.

0 commit comments

Comments
 (0)