Build and publish cargo docs too

First try, real try...
This commit is contained in:
Dustin Carlino 2020-08-19 11:33:00 -07:00
parent 6749edb2b6
commit 8c732feffb

View File

@ -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: