Skip to content

chore: bump to v0.10.10 #149

chore: bump to v0.10.10

chore: bump to v0.10.10 #149

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run compile
- run: npx vsce package --allow-missing-repository
id: package
- uses: actions/upload-artifact@v4
with:
name: vsix
path: '*.vsix'
release:
if: startsWith(github.ref, 'refs/tags/v')
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: vsix
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: '*.vsix'
generate_release_notes: true