Bump version #14
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 and Publish Extension | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Build and Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- name: Install Dependencies | |
run: cd client && npm ci | |
- name: Compile and Create VSIX | |
run: | | |
cd client | |
npm install | |
npm install -g vsce | |
npm run compile | |
npm run webpack | |
npm run vscepack | |
- name: Upload VSIX as Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: extension-package | |
path: client/*.vsix | |
- name: Publish to VS Code Marketplace | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
cd client | |
vsce publish -p ${{ secrets.VSCODE_MARKETPLACE_PRIVATE_ACCESS_TOKEN }} |