Skip to content

v0.0.6

v0.0.6 #4

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@v3
- uses: actions/setup-node@v3
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 }}