more on facts #28
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: Deploy Book | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: | |
- "*" | |
env: | |
# This version has been chosen randomly. It seems that with 2023-11-16, it is | |
# broken. The compiler crashes. Feel free to pick any newer working version. | |
RUST_TOOLCHAIN_VERSION: "nightly-2023-10-10" | |
jobs: | |
release: | |
name: GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4.1.1 | |
# as action-rs does not seem to be maintained anymore, building from | |
# scratch the environment using rustup | |
- name: Setup nightly Rust toolchain | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf -o rustup-init \ | |
https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init | |
chmod +x ./rustup-init | |
./rustup-init -y --default-toolchain "$RUST_TOOLCHAIN_VERSION" --profile default | |
rm ./rustup-init | |
echo "$HOME/.cargo/bin" >> $GITHUB_PATH | |
# overwriting default rust-toolchain | |
echo $RUST_TOOLCHAIN_VERSION > rust-toolchain | |
- name: Build the mdbook | |
run: | | |
make deps | |
make build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./book/html |