v1.0.0 #10
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: Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python: ['3.12'] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
# Install dependencies. | |
- uses: actions/cache@v4 | |
name: Python cache with dependencies. | |
id: python-cache | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ matrix.os }}-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- name: Install dependencies. | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[docs] | |
pip list | |
# Build and publish. | |
- name: Publish release to PyPI | |
if: success() | |
run: | | |
pip install flit==3.9.0 | |
flit --debug publish --no-use-vcs | |
env: | |
FLIT_USERNAME: __token__ | |
FLIT_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
# Publish docs. | |
- name: Publish docs to gh-pages | |
run: mkdocs gh-deploy --force |