Skip to content

Try fixing build configs #7

Try fixing build configs

Try fixing build configs #7

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main # Trigger only on pushes to main
permissions:
contents: write # Needed to allow the bot to push to the gh-pages branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install mkdocs-material
# Add any other plugins you use here
- name: Build and Deploy
run: mkdocs gh-deploy --force