Skip to content

Fix all mktdocs warnings #85

Fix all mktdocs warnings

Fix all mktdocs warnings #85

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main # Deploy when changes are pushed to the main branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9' # Specify the Python version
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Update mkdocs.yml
run: |
python update_mkdocs.py
- name: Build and Deploy MkDocs
run: |
mkdocs gh-deploy --force