Skip to content

Commit

Permalink
Specify an exact wasm-bindgen-cli version in publish.yml. (#2624)
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.76`, and our `Cargo.lock` says `0.2.78`, so
the latter is what `publish.yml` should mention.
  • Loading branch information
jimblandy authored Apr 21, 2022
1 parent 59d640a commit c226a10
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
run: cargo install wasm-bindgen-cli --version=0.2.78

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

0 comments on commit c226a10

Please sign in to comment.