0.6.0 #4
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 | |
on: # yamllint disable-line rule:truthy | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
pypi: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install uv and package | |
run: | | |
python -m pip install --quiet uv | |
uv pip install --quiet --system -e .[build,stubs] | |
- name: Display system information | |
run: pycrostates-sys_info --developer | |
- name: Generate stub files | |
run: python tools/stubgen.py | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: | | |
python -m build | |
twine check dist/* | |
twine upload dist/* |