Skip to content

1.0.4 — 2024-02-16 #20

1.0.4 — 2024-02-16

1.0.4 — 2024-02-16 #20

Workflow file for this run

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