Skip to content

Merge pull request #345 from bharvey88/fix/newtab-instant-nav #562

Merge pull request #345 from bharvey88/fix/newtab-instant-nav

Merge pull request #345 from bharvey88/fix/newtab-instant-nav #562

Workflow file for this run

name: Auto-Build Documentation using MkDocs
# Build and deploy the documentation on every push to the main branch
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build and Deploy Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Main
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material mkdocs-redirects
- name: Deploy
run: mkdocs gh-deploy --force