deploy #2
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: deploy | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
pypi: | |
if: false | |
runs-on: ubuntu-latest | |
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 build . --upgrade pip | |
# - name: Build package distribution | |
# run: python -m build --sdist --wheel --outdir dist/ . | |
# - name: Publish package distribution to PyPI | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# skip_existing: true | |
# user: __token__ | |
# password: ${{ secrets.PYPI_API_TOKEN }} | |
docs: | |
runs-on: ubuntu-latest | |
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 | |
- name: Generate API docs & Build sphinx documentation | |
run: | | |
git fetch --tags | |
cd docs | |
python 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 |