Skip to content

Commit 58096a4

Browse files
committed
switch build to maven
1 parent f624943 commit 58096a4

File tree

100 files changed

+4862
-3982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+4862
-3982
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build VSCode Extension
2+
3+
on: [workflow_dispatch]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
11+
- uses: actions/setup-node@v4
12+
with:
13+
cache: 'npm'
14+
cache-dependency-path: vscode-client/package-lock.json
15+
16+
- name: Install vsce
17+
run: npm i -g @vscode/vsce
18+
19+
- name: Build VSCode Extension
20+
run: |
21+
cd vscode-client
22+
npm install
23+
npm run build-dev-linux
24+
vsce package
25+
26+
- name: Upload Artifact
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: vscode-extension
30+
path: vscode-client/*.vsix

0 commit comments

Comments
 (0)