Skip to content

Commit

Permalink
CI: fix publish job.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Jan 6, 2024
1 parent 8845b5e commit fe50b7d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
publish:
needs: build
runs-on: ubuntu-latest
if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')"
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
steps:
- name: Set up Node
uses: actions/setup-node@v3
Expand All @@ -46,7 +46,6 @@ jobs:
uses: actions/download-artifact@v3
with:
name: package
path: 'dist/'
- name: Publish package
run: vsce publish -i *.vsix
env:
Expand Down

0 comments on commit fe50b7d

Please sign in to comment.