Deploy mdBook site to Pages #19
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
# Sample workflow for building and deploying a mdBook site to GitHub Pages | |
# | |
# To get started with mdBook see: https://rust-lang.github.io/mdBook/index.html | |
# | |
name: Deploy mdBook site to Pages | |
on: | |
# Runs on pushes targeting the default branch | |
# push: | |
# branches: ["main"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-24.04 | |
env: | |
MDBOOK_VERSION: 0.4.40 | |
MDBOOK_PANDOC_VERSION: 0.6.4 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install mdBook | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- run: | | |
cargo install --version ${MDBOOK_VERSION} mdbook | |
cargo install --version ${MDBOOK_PANDOC_VERSION} mdbook-pandoc | |
cargo install mdbook-last-changed | |
- name: Install pandoc | |
run: | | |
export ACTION_ARCH=`dpkg --print-architecture` | |
wget -O pandoc.deb https://github.com/jgm/pandoc/releases/download/3.2.1/pandoc-3.2.1-1-${ACTION_ARCH}.deb | |
sudo dpkg -i $DEB pandoc.deb | |
- name: Install lualatex | |
run: | | |
sudo apt-get install texlive-luatex texlive-latex-base texlive-science texlive-latex-extra | |
- name: Install Google Fonts | |
run: | | |
wget -O Hind-Light.ttf https://github.com/google/fonts/raw/main/ofl/hind/Hind-Light.ttf | |
mkdir -p /usr/share/fonts/truetype/Hind/ | |
cp Hind-Light.ttf /usr/share/fonts/truetype/Hind/ | |
fc-cache -fv | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v5 | |
- name: Build with mdBook | |
run: mdbook build | |
- name: Copy the PDF to html root | |
run: cp ./book/pandoc/pdf/IETF-Ornithology.pdf ./book/html | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./book/html | |
# Deployment job | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-24.04 | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |