Skip to content

Commit 4fa2526

Browse files
committed
Fix release workflow marking beta version as prerelease
1 parent 786cefa commit 4fa2526

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
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
run: |
30-
if [[ "${{ github.ref_name }}" == *-beta ]]; then
30+
if [[ "${{ github.ref_name }}" == *-beta* ]]; then
3131
gh release create "${{ github.ref_name }}" \
3232
--title="${{ github.ref_name }}" \
3333
--prerelease \

0 commit comments

Comments
 (0)