Skip to content

Bump to 0.1.5

Bump to 0.1.5 #7

Workflow file for this run

name: Release to marketplace
on:
push:
tags: ["*"]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
- run: yarn install
- run: npx vsce package --allow-missing-repository --skip-license
- run: npx vsce publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}