We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf70e2 commit 55655d6Copy full SHA for 55655d6
.github/workflows/ci.yml
@@ -1,7 +1,7 @@
1
name: ci
2
3
on:
4
- push:
+ workflow_dispatch:
5
6
jobs:
7
qemu:
@@ -10,3 +10,21 @@ jobs:
10
-
11
name: Set up QEMU
12
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
29
+ name: volar
30
+ path: ${{ github.workspace }}/lapce-volar/dist/*
0 commit comments