Skip to content

Commit 5ad97ce

Browse files
committed
fix(ci): invalid condition in release workflow
1 parent 5ecdaeb commit 5ad97ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
GITHUB_TOKEN: ${{ steps.auth.outputs.token }}
6868
run: |
6969
ARGS=""
70-
if [[ ${{ inputs.prerelease }}; then
70+
if [[ "${{ inputs.prerelease }}" == "true" ]]; then
7171
ARGS+="--conventional-prerelease "
7272
ARGS+="${{ inputs.bump == '(auto)' && ' ' || format('pre{0}', inputs.bump) }} "
7373
else

0 commit comments

Comments
 (0)