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 e74ec9d commit e80ffc2Copy full SHA for e80ffc2
.github/workflows/pre-release.yml
@@ -10,15 +10,21 @@ run-name: Create pre-release for `${{ github.ref_name }}`
10
11
jobs:
12
release-wasm:
13
- runs-on: windows-2025
+ runs-on: ubuntu-24.04
14
steps:
15
- uses: actions/checkout@v4
16
17
- - name: Setup
18
- run: npm run setup
+ - name: Cache cargo-msfs
+ uses: actions/cache@v4
19
+ with:
20
+ path: $HOME/.cargo/bin
21
+ key: ${{ runner.os }}-cargo-msfs
22
+
23
+ # - name: Setup
24
+ # run: npm run setup
25
26
- name: Build WASM module
- run: npm run build:wasm
27
+ run: npm run build:wasm-workflow
28
29
- name: Pre-Release
30
uses: softprops/action-gh-release@v1
0 commit comments