Release v0.25.2 #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload package to VSCode Marketplace | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Setup NPM | |
run: | | |
npm install | |
npm install -g vsce | |
npm run compile | |
- name: Publish | |
if: success() | |
run: vsce publish | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} |