File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments