Skip to content

chore: update egui_dock from 0.13.0 to 0.14.0 & bevy_egui from 0.… #169

chore: update egui_dock from 0.13.0 to 0.14.0 & bevy_egui from 0.…

chore: update egui_dock from 0.13.0 to 0.14.0 & bevy_egui from 0.… #169

Workflow file for this run

name: Documentation
on:
push:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTFLAGS: "-D warnings"
RUSTUP_MAX_RETRIES: 10
RUST_BACKTRACE: 1
jobs:
rustdoc:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# Need to refine this by specifying components required for doc
- uses: dtolnay/rust-toolchain@nightly
- uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: "0.4.36"
# Generate user guide first because it removes all existing files
# from the target directory
- name: Generate User Guide
run: mdbook build -d ../target/doc/ user-guide/
- name: Generate Rust Docs
run: cargo +nightly doc --all --no-deps --all-features
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./target/doc
force_orphan: true