Fix book and add a little blob in the kani.md file #7
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
# Copyright Kani Contributors | |
# SPDX-License-Identifier: Apache-2.0 OR MIT | |
# This workflow is responsible for building and releasing the contest book. | |
# It should only run when there has been a change to the contest book files | |
# or a manual trigger. | |
name: Build Book | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'doc/**' | |
push: | |
paths: | |
- 'doc/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install mdbook | |
run: | | |
cargo install mdbook --version "^0.4" --locked | |
echo "${HOME}/.cargo/bin" >> $GITHUB_PATH | |
- name: Install linkchecker | |
run: cargo install mdbook-linkcheck --version "^0.7" --locked | |
- name: Build Documentation | |
run: mkdbook build doc | |
- name: Upload book | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: book/html | |
retention-days: "2" | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' && startsWith('refs/heads/main', github.ref) }} | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify source | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |