create-vsix #326
This file contains hidden or 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: 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@v4 | |
| with: | |
| name: vscode-brightscript-language.vsix | |
| path: .vsix-building/vscode-brightscript-language/*.vsix |