Skip to content

1.3.2 // 2023-12-23

1.3.2 // 2023-12-23 #5

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: deploy
on:
release:
types: [published]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14'
- uses: actions/cache@v2
with:
path: |
~/.npm
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- run: npm ci
- name: deploy to vscode marketplace
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
run: |
npx vsce publish -p $VSCE_TOKEN