Updated extension version to v1.2.0
and updated CHANGELOG.md
#8
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: Publish Visual Studio Code Extension to Marketplace | |
on: | |
push: | |
tags: | |
- 'release-*' | |
jobs: | |
publish-extension: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Visual Studio Code Extension Manager | |
run: npm install -g @vscode/vsce | |
- name: Install npm Dependencies | |
run: npm install | |
- name: Package Extension | |
run: npm run vscode:prepublish | |
- name: Publish Extension to Visual Studio Code Marketplace | |
run: vsce publish -p ${{ secrets.AZURE_DEVOPS_PERSONAL_ACCESS_TOKEN }} |