Skip to content

Commit 17e860a

Browse files
fix wasm-pack install for rust 1.88 in release workflow
Use cargo install with --locked for wasm-pack 0.14.0 so dependency resolution remains compatible with the pinned Rust toolchain in CI.
1 parent 6aae0d5 commit 17e860a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-sdk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
run: rustup target add wasm32-unknown-unknown
7272

7373
- name: Install wasm-pack
74-
run: cargo install wasm-pack@0.14.0
74+
run: cargo install wasm-pack --version 0.14.0 --locked
7575

7676
- name: Build WASM package
7777
run: |

0 commit comments

Comments
 (0)