Specify an exact wasm-bindgen-cli version in publish.yml. (#2624)

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.
This commit is contained in:
Jim Blandy 2022-04-21 13:57:35 -07:00 committed by GitHub
parent 59d640a107
commit c226a10329
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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