Fix invalid version of wasm-pack (#11078)

Long shot to potentially fix wasm-pack/wasm-bindgen generation issues.
Hosted MacOS ARM runner uses `0.12.1` and that one works.
This commit is contained in:
Hubert Plociniczak 2024-09-14 21:06:13 +02:00 committed by GitHub
parent 8fab4f5ea6
commit 742fc5f9ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -78,7 +78,7 @@ pub fn setup_wasm_pack_step() -> Step {
uses: Some("jetli/wasm-pack-action@v0.4.0".into()),
with: Some(step::Argument::Other(BTreeMap::from_iter([(
"version".into(),
"v0.10.2".into(),
"v0.12.1".into(),
)]))),
r#if: Some(is_github_hosted()),
..default()