Skip to content

create-vsix

create-vsix #260

Workflow file for this run

name: create-vsix
on:
workflow_dispatch:
inputs:
branch:
description: "The branch name which should be used to build the vsix"
required: true
jobs:
create-vsix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "18.18.2"
- run: npm ci
- run: npx ts-node scripts/create-vsix.ts ${{ github.event.inputs.branch }}
- uses: actions/upload-artifact@v2
with:
name: vscode-brightscript-language.vsix
path: .vsix-building/vscode-brightscript-language/*.vsix