diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index d96e585061..83dc4a9c03 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -18,6 +18,15 @@ jobs: run: | cd book mdbook build + + - name: Install Rust + uses: hecrj/setup-rust-action@v1 + + - name: Generate rustdoc + run: | + cargo doc --no-deps + mv target/doc book/book/rustdoc + - name: Publish HTML uses: peaceiris/actions-gh-pages@v3 with: