Skip to content

version: 0.1.9 (#323) #212

version: 0.1.9 (#323)

version: 0.1.9 (#323) #212

Workflow file for this run

name: MKDocs Deployment to GitHub Pages
"on":
push:
branches:
- main # Set a branch to deploy
jobs:
mkdocs:
name: Deploy docs
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout main
uses: actions/[email protected]
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Running mkdocs
run: |
python -m pip install --quiet --no-cache-dir --upgrade poetry
poetry install
poetry run mkdocs gh-deploy -m 'Commit {sha} MkDocs {version}' --force