Fixed usage views (removed contexts and multiple nested usages). #27
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 Extension | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
- name: Install dependencies | |
run: | | |
cd vsc-plugin | |
npm install | |
npm i -g vsce | |
- name: Build | |
run: | | |
cd vsc-plugin | |
make | |
- name: Publish | |
run: | | |
cd vsc-plugin | |
vsce publish -p ${{ secrets.VSCE_PAT }} |