Skip to content

Install all requirements during doc build #6

Install all requirements during doc build

Install all requirements during doc build #6

Workflow file for this run

name: "Sphinx: Render docs"
on: push
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Build API Docs
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
sphinx-apidoc -o docs/source/ src/dancesport_parser
sphinx-build -b html docs/source/ docs
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: html-docs
path: docs/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/