Skip to content

docs: use logo png for mkdocs icon #6

docs: use logo png for mkdocs icon

docs: use logo png for mkdocs icon #6

Workflow file for this run

name: Docs
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
concurrency:
group: docs
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install docs dependencies
run: python -m pip install -e ".[docs]"
- name: Build documentation
run: mkdocs build --strict
- name: Deploy to gh-pages
run: mkdocs gh-deploy --force --no-history