Skip to content

Commit 51f2019

Browse files
committed
workflow(fix): final workflow fix
1 parent 105680b commit 51f2019

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Cache cargo-msfs
2323
uses: actions/cache@v4
2424
with:
25-
path: $HOME/.cargo/bin
25+
path: ~\.cargo\bin
2626
key: ${{ runner.os }}-cargo-msfs
2727

2828
- name: Setup

.github/workflows/release.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,24 @@ run-name: Create release for `${{ github.ref_name }}`
1111

1212
jobs:
1313
release-wasm:
14-
runs-on: ubuntu-latest
14+
runs-on: windows-2022
1515
steps:
1616
- uses: actions/checkout@v4
1717

18+
- name: Install LLVM and Clang
19+
uses: KyleMayes/[email protected]
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+
1832
- name: Build WASM module
1933
run: npm run build:wasm-workflow
2034

0 commit comments

Comments
 (0)