Skip to content

Commit

Permalink
🐛 FIX: check new release using 'v' keyword from tags instead of releases
Browse files Browse the repository at this point in the history
  • Loading branch information
george3447 committed Jun 15, 2020
1 parent 56833c7 commit 3acd3e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
run: npm test
- name: Publish
if: success() && startsWith(github.ref, 'refs/tags/releases/')
if: success() && startsWith(github.ref, 'refs/tags/v')
run: npm run deploy
env:
VSCE_PAT: ${{ secrets.VSCE_TOKEN }}

0 comments on commit 3acd3e8

Please sign in to comment.