Python version #1
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: | |
push: | |
tags: | |
# Publish on any tag starting with a `v`, e.g. v1.2.3 | |
- v* | |
jobs: | |
pypi: | |
name: Publish to PyPI | |
runs-on: ubuntu-latest | |
# Environment and permissions trusted publishing. | |
environment: | |
# Create this environment in the GitHub repository under Settings -> Environments | |
name: release | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- run: uv build | |
# Check that basic features work and we didn't miss to include crucial files | |
- name: Smoke test (wheel) | |
run: uv run --isolated --no-project -p 3.13 --with dist/*.whl tests/smoke_test.py | |
- name: Smoke test (source distribution) | |
run: uv run --isolated --no-project -p 3.13 --with dist/*.tar.gz tests/smoke_test.py | |
- run: uv publish --trusted-publishing always | |
# The part below with testpypi only because it's a demo repo, remove the next two lines for production usage | |
env: | |
UV_PUBLISH_URL: https://test.pypi.org/legacy/ |