Angel/susbcribe to evalutation #32
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: CI/CD for VSCode Extension | |
on: | |
push: | |
branches: | |
tags: | |
- "*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
git_check: | |
uses: ./.github/workflows/git_check.yaml | |
dprint_check: | |
uses: ./.github/workflows/dprint_check.yaml | |
package-and-publish-extension: | |
needs: [git_check, dprint_check] | |
name: Package and Publish VSCode Extension | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- name: Install dependencies | |
run: npm install | |
- name: Install VSCE (CLI for managing VS Code extensions) | |
run: npm install -g @vscode/vsce | |
- name: Package Extension | |
run: vsce package | |
- name: Publish Extension to VSCode Marketplace | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
run: vsce publish --no-git-tag-version --no-update-package-json --pat $VSCE_PAT --skip-duplicate | |
- name: Upload Release to GitHub | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: "*.vsix" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |