Skip to content

Commit

Permalink
Specify an exact wasm-bindgen-cli version in publish.yml. (#2873)
Browse files Browse the repository at this point in the history
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.81`, and our `Cargo.lock` agrees, so
that is what `publish.yml` should mention.
  • Loading branch information
jimblandy authored Jul 13, 2022
1 parent 5094525 commit 18d053d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
target: wasm32-unknown-unknown

- name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli --version=0.2.78
run: cargo install wasm-bindgen-cli --version=0.2.81

- name: Build WebGPU examples
run: cargo build --release --target wasm32-unknown-unknown --examples
Expand Down

0 comments on commit 18d053d

Please sign in to comment.