Skip to content

v0.0.7

v0.0.7 #6

Workflow file for this run

name: Publish release
on:
release:
types: [created]
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
jobs:
test:
uses: ./.github/workflows/test.yml
publish:
name: Publish (Microsoft Marketplace)
runs-on: ubuntu-latest
needs: test
if: success() && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm install
- name: Publish Extension
run: npm run vscode:publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}