File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 22
22
- name : Cache cargo-msfs
23
23
uses : actions/cache@v4
24
24
with :
25
- path : $HOME/ .cargo/ bin
25
+ path : ~\ .cargo\ bin
26
26
key : ${{ runner.os }}-cargo-msfs
27
27
28
28
- name : Setup
Original file line number Diff line number Diff line change @@ -11,10 +11,24 @@ run-name: Create release for `${{ github.ref_name }}`
11
11
12
12
jobs :
13
13
release-wasm :
14
- runs-on : ubuntu-latest
14
+ runs-on : windows-2022
15
15
steps :
16
16
- uses : actions/checkout@v4
17
17
18
+ - name : Install LLVM and Clang
19
+ uses : KyleMayes/install-llvm-action@v2.0.5
20
+ with :
21
+ version : " 17.0.6"
22
+
23
+ - name : Cache cargo-msfs
24
+ uses : actions/cache@v4
25
+ with :
26
+ path : ~\.cargo\bin
27
+ key : ${{ runner.os }}-cargo-msfs
28
+
29
+ - name : Setup
30
+ run : npm run setup
31
+
18
32
- name : Build WASM module
19
33
run : npm run build:wasm-workflow
20
34
You can’t perform that action at this time.
0 commit comments