This repository was archived by the owner on Mar 3, 2026. It is now read-only.
v0.6.0 #40
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'lts/*' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint code | |
| run: npm run lint | |
| - name: Run tests | |
| uses: coactions/setup-xvfb@v1 | |
| with: | |
| run: npm test | |
| - name: Package extension | |
| run: | | |
| npx @vscode/vsce package | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: vsix-package | |
| path: '*.vsix' | |
| - name: Upload vsix to Release | |
| uses: ncipollo/release-action@v1 | |
| if: github.event_name == 'release' | |
| with: | |
| allowUpdates: true | |
| omitBody: true | |
| omitName: true | |
| artifacts: '*.vsix' | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Publish to VS Code Marketplace | |
| if: github.event_name == 'release' | |
| run: npx @vscode/vsce publish --packagePath *.vsix -p ${{ secrets.VSCE_PAT }} |