Skip to content

Merge pull request #10 from daniprec/develop #1

Merge pull request #10 from daniprec/develop

Merge pull request #10 from daniprec/develop #1

Workflow file for this run

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