Skip to content

fix Author import bug #271

fix Author import bug

fix Author import bug #271

Workflow file for this run

name: Docs
on:
push:
branches:
- 'main'
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-python@v7
with:
python-version: '3.11'
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libmariadb-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx-argparse sphinx_rtd_theme
pip install --no-cache-dir -v -e .
- name: Sphinx build
run: |
cd docs
make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
force_orphan: true