Skip to content

Add GitHub Sponsors funding link #10

Add GitHub Sponsors funding link

Add GitHub Sponsors funding link #10

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
- name: Install mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: "latest"
- name: Install mdbook-mermaid
run: |
MERMAID_VERSION=$(curl -sI https://github.com/badboy/mdbook-mermaid/releases/latest | grep -i '^location:' | grep -oP 'v[\d.]+')
curl -sSL "https://github.com/badboy/mdbook-mermaid/releases/download/${MERMAID_VERSION}/mdbook-mermaid-${MERMAID_VERSION}-x86_64-unknown-linux-gnu.tar.gz" | tar -xz
install mdbook-mermaid /usr/local/bin/
mdbook-mermaid install .
- 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