We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105680b commit 51f2019Copy full SHA for 51f2019
.github/workflows/pre-release.yml
@@ -22,7 +22,7 @@ jobs:
22
- name: Cache cargo-msfs
23
uses: actions/cache@v4
24
with:
25
- path: $HOME/.cargo/bin
+ path: ~\.cargo\bin
26
key: ${{ runner.os }}-cargo-msfs
27
28
- name: Setup
.github/workflows/release.yml
@@ -11,10 +11,24 @@ run-name: Create release for `${{ github.ref_name }}`
11
12
jobs:
13
release-wasm:
14
- runs-on: ubuntu-latest
+ runs-on: windows-2022
15
steps:
16
- uses: actions/checkout@v4
17
18
+ - name: Install LLVM and Clang
19
+ uses: KyleMayes/[email protected]
20
+ with:
21
+ version: "17.0.6"
+
+ - name: Cache cargo-msfs
+ uses: actions/cache@v4
+ key: ${{ runner.os }}-cargo-msfs
29
+ - name: Setup
30
+ run: npm run setup
31
32
- name: Build WASM module
33
run: npm run build:wasm-workflow
34
0 commit comments