Skip to content

chore: update changelog #9

chore: update changelog

chore: update changelog #9

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches: [main]
permissions:
contents: write
jobs:
Documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install poetry
run: |
pip install poetry
poetry install --only docs
- name: Set up Git
run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com
- name: Build documentation
run: |
git fetch origin gh-pages
poetry run mike delete main
poetry run mike deploy --push main