Skip to content

Commit 78caf3d

Browse files
committed
Added build job
1 parent 5f5a56f commit 78caf3d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Package Extension
2+
on: push
3+
jobs:
4+
package-extension:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: oven-sh/setup-bun@v2
9+
10+
- run: bun install
11+
- run: bun run package
12+
13+
- uses: actions/upload-artifact@v4
14+
with:
15+
name: .vsix
16+
path: *.vsix

0 commit comments

Comments
 (0)