Skip to content

Reduce size of Rust library (#33) #38

Reduce size of Rust library (#33)

Reduce size of Rust library (#33) #38

Workflow file for this run

name: Deploy docs to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install mdBook
run: cargo install mdbook
- name: Build mdBook
run: mdbook build docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/book
publish_branch: gh-pages
keep_files: false