Skip to content

build(deps-dev): bump mkdocstrings from 0.24.0 to 0.24.1 (#268) #64

build(deps-dev): bump mkdocstrings from 0.24.0 to 0.24.1 (#268)

build(deps-dev): bump mkdocstrings from 0.24.0 to 0.24.1 (#268) #64

Workflow file for this run

name: Publish documentation
on:
push:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Dependencies
run: |
python -m pip install -U pip poetry
poetry install
- name: Build docs
run: |
poetry run mkdocs build
- name: Push doc to Github Page
uses: peaceiris/actions-gh-pages@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./site