Skip to content

1.0.14 — 2024-10-17 #33

1.0.14 — 2024-10-17

1.0.14 — 2024-10-17 #33

Workflow file for this run

name: deploy
on:
release:
types: [published]
workflow_dispatch:
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