Skip to content

Commit 55655d6

Browse files
authored
Update ci.yml
1 parent 7bf70e2 commit 55655d6

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: ci
22

33
on:
4-
push:
4+
workflow_dispatch:
55

66
jobs:
77
qemu:
@@ -10,3 +10,21 @@ jobs:
1010
-
1111
name: Set up QEMU
1212
uses: docker/setup-qemu-action@v2
13+
14+
- uses: actions/checkout@v3
15+
- name: Use Node.js
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: 16
19+
20+
- name: install pkg
21+
run: |
22+
cd lapce-volar
23+
npm install
24+
npx pkg vue-language-server.js --output-path ./dist --target x64,arm64
25+
26+
- name: upload
27+
uses: actions/upload-artifact@v3
28+
with:
29+
name: volar
30+
path: ${{ github.workspace }}/lapce-volar/dist/*

0 commit comments

Comments
 (0)