Skip to content

Updated documentation configuration and links. Adjusted the logo path… #7

Updated documentation configuration and links. Adjusted the logo path…

Updated documentation configuration and links. Adjusted the logo path… #7

Workflow file for this run

name: Build and Deploy Docs
on:
push:
branches: [main, dev]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
pip install sphinx sphinx-rtd-theme sphinx-autodoc-typehints
- name: Build docs
run: |
cd docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html