Skip to content

Commit 5f84937

Browse files
authored
chore: add vsix build script (#1703)
**Summary:** This copies part of the package & publish action to a new action just for building vsix files for testers
1 parent e2d53a3 commit 5f84937

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build-vsix.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build VSIX
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
package:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-node@v6
12+
with:
13+
node-version-file: ".nvmrc"
14+
cache: "npm"
15+
- run: npx @vscode/vsce package
16+
- uses: actions/upload-artifact@v5
17+
with:
18+
path: ./*.vsix
19+
retention-days: 5

0 commit comments

Comments
 (0)