Skip to content

Iteration 5

Iteration 5 #6

Workflow file for this run

name: Deploy Documentation
on:
# Trigger on pushes to documentation branch
push:
branches:
- documentation
# Allow manual trigger
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material mkdocstrings[python] mkdocs-autorefs
# Deploy directly using mkdocs
- name: Deploy
run: mkdocs gh-deploy --force