Serverless Workflow VSCode Extension v2.0.0 #1
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: Release artifact | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install VSCE | |
run: npm install -g @vscode/vsce | |
- name: Restore dependencies | |
run: npm ci | |
- name: Build Extension | |
run: vsce package | |
- name: Publish to GitHub | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: "*.vsix" |