Update version number and changelog #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Extension | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build-and-release: | |
permissions: | |
contents: write | |
name: Build and Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install packages | |
run: npm ci | |
- name: Run type checking | |
run: npm run typecheck | |
- name: Build and package extension | |
run: npm run package -- $GITHUB_REF_NAME | |
- name: Upload vsix file to GitHub release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: ./*.vsix | |
allowUpdates: true | |
replacesArtifacts: true | |
draft: true |