Publish examples to wgpu.rs on updates to trunk branch instead of gecko (#3750)

This commit is contained in:
Paul Hansen 2023-05-11 11:12:25 -05:00 committed by GitHub
parent f71a1bc736
commit 28374fb1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -3,7 +3,7 @@ name: Publish
on:
push:
branches:
- gecko
- trunk
env:
CARGO_INCREMENTAL: false
@ -24,7 +24,7 @@ jobs:
run: rustup target add wasm32-unknown-unknown
- name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli --version=0.2.83
run: cargo +stable install wasm-bindgen-cli --version=0.2.84
- name: Build WebGPU examples
run: cargo build --package wgpu --release --target wasm32-unknown-unknown --examples

View File

@ -60,6 +60,12 @@ Bottom level categories:
- Fix crash on dropping `wgpu::CommandBuffer`. By @wumpf in [#3726](https://github.com/gfx-rs/wgpu/pull/3726).
- Use `u32`s internally for bind group indices, rather than `u8`. By @ErichDonGubler in [#3743](https://github.com/gfx-rs/wgpu/pull/3743).
### Examples
#### General
- Publish examples to wgpu.rs on updates to trunk branch instead of gecko. By @paul-hansen in [#3750](https://github.com/gfx-rs/wgpu/pull/3750)
## v0.16.0 (2023-04-19)
### Major changes