Skip to content

Publish documentation #11

Publish documentation

Publish documentation #11

Workflow file for this run

---
name: Publish documentation
on:
workflow_dispatch: {}
push:
tags:
- 'v*'
paths:
- mkdocs.yml
- 'docs/**'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.x
cache: pip
- name: Install mkdocs, theme, and plugins
run: pip install -r requirements.txt
- name: Deploy site
run: mkdocs gh-deploy --force