Skip to content

fix(build-book): rewrite uppercase meta-doc links to lowercase HTML t… #7

fix(build-book): rewrite uppercase meta-doc links to lowercase HTML t…

fix(build-book): rewrite uppercase meta-doc links to lowercase HTML t… #7

Workflow file for this run

name: Deploy mdBook to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 'latest'
- name: Build src/ from stub folders
run: python3 bin/build_book.py
- name: Build book
run: mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: book/
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4