Skip to content

Workflow file for this run

on:
push:
branches:
- master
release:
types:
- created
jobs:
publish:
runs-on: ubuntu-latest
if: success() && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- run: npm ci
- run: npm run deploy
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}