Skip to content

Fixed links and text in the docs #13

Fixed links and text in the docs

Fixed links and text in the docs #13

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- '**' # Runs on push to any branch
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install --only docs
- name: Deploy docs
run: poetry run mkdocs gh-deploy --force