Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install `mdbook`
run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.4.7/mdbook-v0.4.7-x86_64-unknown-linux-gnu.tar.gz" \
run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.5.2/mdbook-v0.5.2-x86_64-unknown-linux-gnu.tar.gz" \
| tar xvz
- run: ./mdbook test
- run: ./mdbook build
Expand All @@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install `mdbook`
run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.4.7/mdbook-v0.4.7-x86_64-unknown-linux-gnu.tar.gz" \
run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.5.2/mdbook-v0.5.2-x86_64-unknown-linux-gnu.tar.gz" \
| tar xvz
- run: ./mdbook build
- run: ./ci/deploy.sh
6 changes: 6 additions & 0 deletions book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
title = "Rust Fuzz Book"
description = "Guide on how to fuzz test software written in the Rust programming language"
authors = ["Corey Farwell"]

[output.html]
git-repository-url = "https://github.com/rust-fuzz/book"
git-repository-icon = "fab-github"
edit-url-template = "https://github.com/rust-fuzz/book/edit/master/{path}"
site-url = "/book/"
Loading