Skip to content

v0.8.5

v0.8.5 #82

Workflow file for this run

name: Publish Extension
on:
workflow_dispatch:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.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
- name: Publish
env:
TELEMETRY_CONNECTIONSTRING: ${{ secrets.TELEMETRY_CONNECTIONSTRING }}
run: vsce publish -p ${{ secrets.PAT }}