Skip to content

v0.1.16

v0.1.16 #6

Workflow file for this run

name: Publish Extension
on:
workflow_dispatch:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm install --global @vscode/vsce
- run: npm install
- run: vsce publish -p ${{ secrets.PAT }}