Skip to content

ci: πŸ‘· remove the apidocs job from release.yml #60

ci: πŸ‘· remove the apidocs job from release.yml

ci: πŸ‘· remove the apidocs job from release.yml #60

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
# Rebuild after each release so the version shown in the header refreshes.
release:
types: [published]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install docs dependencies
run: pip install "mkdocs-material>=9.0" "mkdocstrings[python]>=0.24" .
- name: Build and deploy to GitHub Pages
run: mkdocs gh-deploy --force