We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a9f05 commit 6e45a2fCopy full SHA for 6e45a2f
.github/workflows/tag_deploy.yml
@@ -117,10 +117,11 @@ jobs:
117
id: create_release
118
env:
119
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
120
+ IS_PRERELASE: ${{ steps.tag-check.outputs.prerelease }}
121
run: |
122
echo "${RELEASE_MESSAGE}" > /tmp/.commit-msg.txt
123
args=(--file /tmp/.commit-msg.txt)
- [[ ${{ steps.tag-check.outputs.prerelease }} == yes ]] && args+=(--prerelease)
124
+ [[ $IS_PRERELASE == yes ]] && args+=(--prerelease)
125
126
hub release create ${args[@]} "$TARGET_TAG"
127
0 commit comments