Skip to content

1.3.3 // 2024-09-11

1.3.3 // 2024-09-11 #8

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: '18'
- uses: actions/cache@v2
with:
path: |
~/.npm
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- run: npm install
- name: deploy to vscode marketplace
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
run: |
npx vsce publish -p $VSCE_TOKEN