v1.1.0 #2
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: Release and Publish | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Publish to Marketplace | |
run: npm run publish-vsce -- -p ${{ secrets.VSCE_PAT }} | |
- name: Publish to open-vsx.org | |
run: npm run publish-ovsx -- -p ${{ secrets.OVSX_PAT }} |