Fix broken link #3
This file contains hidden or 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
| name: Build & Deploy Docs | |
| on: | |
| push: | |
| branches: [main] # rebuild when main is updated | |
| workflow_dispatch: # allow manual trigger from the Actions tab | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # 1 ─ Checkout repo | |
| - uses: actions/checkout@v4 | |
| # 2 ─ Set up Python | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| # 3 ─ Install MkDocs and plugins | |
| - run: | | |
| python -m pip install --upgrade pip | |
| pip install \ | |
| mkdocs-material \ | |
| mkdocs-mermaid2-plugin | |
| # 4 ─ Build and push to gh-pages | |
| - name: Deploy to GitHub Pages | |
| run: mkdocs gh-deploy --force |