Make "The Runtime" example interactive with mdbook-iced
🎉
#18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
book: | |
runs-on: ubuntu-20.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: hecrj/setup-rust-action@v2 | |
- name: Install `mdbook`, `mdbook-iced`, and `wasm-bindgen-cli` | |
run: cargo install mdbook mdbook-iced wasm-bindgen-cli | |
- name: Add `wasm32-unknown-unknown` target to Rust toolchain | |
run: rustup target add wasm32-unknown-unknown | |
- name: Build book | |
run: mdbook build | |
- name: Copy CNAME | |
run: cp CNAME ./book/. | |
- name: Publish book | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./book |