Skip to content

bump version number #14

bump version number

bump version number #14

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
test:
name: Test
uses: ./.github/workflows/test.yml
build:
name: Build
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- run: yarn install --frozen-lockfile
- run: yarn build
- uses: ncipollo/release-action@v1
with:
artifacts: "*.vsix"
token: ${{ secrets.GITHUB_TOKEN }}