Skip to content

Commit 8435251

Browse files
committed
chore: fix dry-run property
1 parent b2194a5 commit 8435251

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tag_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
dry_run: ${{ inputs.dry_run }}
2727

2828
- name: Create release
29-
if: ${{ inputs.dry_run == 'false' }}
29+
if: ${{ inputs.dry_run != 'true' }}
3030
uses: ncipollo/release-action@v1.14.0
3131
with:
3232
tag: ${{ steps.tag_version.outputs.new_tag }}
3333
name: ${{ steps.tag_version.outputs.new_version }}
3434
body: ${{ steps.tag_version.outputs.changelog }}
3535

3636
publish_packages:
37-
if: ${{ inputs.dry_run == 'false' }}
37+
if: ${{ inputs.dry_run != 'true' }}
3838
name: Publish packages
3939
uses: './.github/workflows/publish.yml'
4040
secrets: inherit

0 commit comments

Comments
 (0)