Skip to content

Deploy VSCode Plugin #7

Deploy VSCode Plugin

Deploy VSCode Plugin #7

Workflow file for this run

name: Deploy VSCode Plugin
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: master
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Dependency
run: |
npm install
- name: Package
run: |
npm install -g vsce
vsce package
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{secrets.RELEASE_TOKEN}}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{secrets.RELEASE_TOKEN}}
with:
upload_url: ${{steps.create_release.outputs.upload_url}}
asset_path: ./*.vsix
asset_name: cmake-project-template.vsix
asset_content_type: application/vsix