Skip to content

Logo

Logo #6

Workflow file for this run

name: Publish Documentation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install MkDocs Material
run: pip install mkdocs-material
- name: Build and Deploy to GitHub Pages
run: mkdocs gh-deploy --force