fix: corrected auto-completion for target & specification attributes #10
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
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
publish: | |
name: Release and publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- name: Install the dependencies | |
run: npm i | |
- name: Install esbuild | |
run: npm i -g esbuild | |
- name: Install vsce | |
run: npm i -g @vscode/vsce | |
- name: Publish | |
run: vsce publish -p ${{ secrets.VSCE_PAT }} |