Skip to content

Commit f3cd507

Browse files
authored
Merge branch 'main' into fix/theming
2 parents 049f001 + 5f84937 commit f3cd507

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)