Skip to content

v1.3.0

v1.3.0 #35

Workflow file for this run

name: Publish Release
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.sha }}
- uses: actions/setup-node@v3
with:
node-version: "16"
- run: npm ci
- name: Build and Pre-Publish
run: npm run vscode:prepublish
- name: Install VSCE
run: npm i vsce
- name: Publish
run: npx vsce publish -p $VSCE_TOKEN
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}