Skip to content

Commit

Permalink
Fix release condition
Browse files Browse the repository at this point in the history
  • Loading branch information
garaemon committed Jan 9, 2023
1 parent c57185e commit c245c40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- run: vsce package
if: ${{ env.PRERELEASE == 'false' }}
- run: vsce package --pre-release
if: ${{ env.PRERELEASE == true }}
if: ${{ env.PRERELEASE == 'true' }}
- run: vsce publish -p ${{ secrets.VSCE_PAT }}
if: ${{ env.PRERELEASE == 'false' }}
- run: vsce publish -p ${{ secrets.VSCE_PAT }} --pre-release
if: ${{ env.PRERELEASE == 'false' }}
if: ${{ env.PRERELEASE == 'true' }}

0 comments on commit c245c40

Please sign in to comment.