Trying a name change #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs | ||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: github-pages | ||
permissions: | ||
pages: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install .[docs] --upgrade pip | ||
pip install sphinx | ||
- name: Generate API docs & Build sphinx documentation | ||
run: | | ||
git fetch --tags | ||
git checkout publish-docs | ||
git pull | ||
cd docs | ||
echo "docs.py Calling build.py" | ||
python build.py | ||
echo "Done Calling build.py" | ||
cd .. | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v5 | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: './docs/pages' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |