From 2c3e75f488fdc6756b43df2450cf6c0a43d3f058 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 21 Apr 2022 13:44:43 -0700 Subject: [PATCH] Specify an exact wasm-bindgen-cli version in publish.yml. The versions of wasm-bindgen-cli run by `.github/workflows/publish.yml` must exactly match the version of `wasm-bindgen` used by `wgpu`. At the moment, `wgpu/Cargo.toml` specifies `0.2.76`, and our `Cargo.lock` says `0.2.78`, so the latter is what `publish.yml` should mention. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fc62940bcc..f11499fead 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,7 +24,7 @@ jobs: target: wasm32-unknown-unknown - name: Install wasm-bindgen-cli - run: cargo install wasm-bindgen-cli + run: cargo install wasm-bindgen-cli --version=0.2.78 - name: Build WebGPU examples run: cargo build --release --target wasm32-unknown-unknown --examples