Skip to content

Commit c245c40

Browse files
committed
Fix release condition
1 parent c57185e commit c245c40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- run: vsce package
3434
if: ${{ env.PRERELEASE == 'false' }}
3535
- run: vsce package --pre-release
36-
if: ${{ env.PRERELEASE == true }}
36+
if: ${{ env.PRERELEASE == 'true' }}
3737
- run: vsce publish -p ${{ secrets.VSCE_PAT }}
3838
if: ${{ env.PRERELEASE == 'false' }}
3939
- run: vsce publish -p ${{ secrets.VSCE_PAT }} --pre-release
40-
if: ${{ env.PRERELEASE == 'false' }}
40+
if: ${{ env.PRERELEASE == 'true' }}

0 commit comments

Comments
 (0)