We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 049ebac commit 9d43723Copy full SHA for 9d43723
jobs/release/action.yaml
@@ -37,7 +37,7 @@ runs:
37
echo "${{ inputs.changelogs }}" >> "$changelog_file"
38
39
ARGS="--repo ${{ github.repository }} --target ${{ github.sha }} -F $changelog_file"
40
- if ${{ inputs.pre-release }}; then
+ if [ "${{ inputs.pre-release }}" == "true" ]; then
41
ARGS="$ARGS --prerelease"
42
fi
43
gh release create $ARGS v${{ inputs.version }} ${{ inputs.assets }}
0 commit comments