Skip to content

Commit fbe5360

Browse files
committed
chore: fix
1 parent b52f6fe commit fbe5360

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tag_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
description: Manually set release version
88
required: false
99
type: string
10-
dryrun:
10+
dry_run:
1111
description: Dry run
1212
required: false
1313
type: boolean
@@ -22,18 +22,18 @@ jobs:
2222
with:
2323
custom_tag: ${{ inputs.version }}
2424
github_token: ${{ secrets.GITHUB_TOKEN }}
25-
debug: ${{ inputs.dryrun }}
25+
dry_run: ${{ inputs.dry_run }}
2626

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

3535
publish_packages:
36-
if: ${{ inputs.dryrun == 'false' }}
36+
if: ${{ inputs.dry_run == 'false' }}
3737
name: Publish packages
3838
uses: './.github/workflows/publish.yml'
3939
secrets: inherit

0 commit comments

Comments
 (0)