Skip to content

Restructure site navigation and add funding page #53

Restructure site navigation and add funding page

Restructure site navigation and add funding page #53

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- documentation
paths:
- 'documentation/wiki/**'
- 'mkdocs.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install MkDocs and dependencies
run: pip install "mkdocs>=1.6,<2.0" mkdocs-material
- name: Build documentation site
run: mkdocs build --strict
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4