Merge pull request #2 from brianwarner/2024-10-07-metadata #6
Workflow file for this run
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: Publish to PyPI | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
pypi-publish: | |
name: Upload release to PyPI and update documentation | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install build setuptools setuptools-scm sphinx sphinx_rtd_theme myst_parser | |
- name: Build the packages | |
run: | | |
python -m build | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
- name: Generate documentation with latest version | |
run: | | |
sphinx-build -b html docsrc docs -E -d "docsrc/_doctrees" | |
- name: Commit and push the new documentation | |
if: steps.verify_diff.outputs.changed == 'true' | |
run: | | |
git config user.name "Brian Warner (autocommit)" | |
git config user.email [email protected] | |
git add docs | |
git commit -m "Rebuild the documentation" || exit 0 | |
git push |