Skip to content

0.1.0 (#20)

0.1.0 (#20) #7

Workflow file for this run

name: publish
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm install -g vsce
- run: npm t
- run: vsce package
- uses: actions/upload-artifact@v3
with:
name: package
path: '*.vsix'