mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
6db097694c
Bumps [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action) from 4.6.4 to 4.6.8. - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/v4.6.4...v4.6.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: Publish
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/publish.yml'
|
|
push:
|
|
branches:
|
|
- trunk
|
|
|
|
env:
|
|
CARGO_INCREMENTAL: false
|
|
CARGO_TERM_COLOR: always
|
|
RUST_BACKTRACE: full
|
|
RUSTFLAGS:
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install Rust WASM target
|
|
run: rustup target add wasm32-unknown-unknown
|
|
|
|
- name: Get wasm-bindgen version
|
|
run: |
|
|
WASM_BINDGEN_VERSION=$(cargo metadata --format-version 1 --all-features | jq '.packages[] | select(.name == "wasm-bindgen") | .version' | tr -d '"')
|
|
|
|
echo $WASM_BINDGEN_VERSION
|
|
|
|
echo "WASM_BINDGEN_VERSION=$WASM_BINDGEN_VERSION" >> "$GITHUB_ENV"
|
|
|
|
- name: Install wasm-bindgen
|
|
run: cargo +stable install wasm-bindgen-cli --version=$WASM_BINDGEN_VERSION
|
|
|
|
- name: Build examples
|
|
run: cargo xtask run-wasm --no-serve
|
|
|
|
- name: Deploy WebGPU examples
|
|
uses: JamesIves/github-pages-deploy-action@v4.6.8
|
|
if: github.ref == 'refs/heads/trunk'
|
|
with:
|
|
token: ${{ secrets.WEB_DEPLOY }}
|
|
folder: target/generated
|
|
repository-name: gfx-rs/wgpu-rs.github.io
|
|
branch: master
|
|
target-folder: examples/
|