Skip to content

Upload Python Package to PyPI when a Release is Created #18

Upload Python Package to PyPI when a Release is Created

Upload Python Package to PyPI when a Release is Created #18

Workflow file for this run

name: Upload Python Package to PyPI when a Release is Created
on:
release:
types: [created]
jobs:
pypi-publish:
name: Publish release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Set up uv
# Install latest uv version using the installer
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install the project
run: uv sync --extra publish
- name: Build package
run: uv run python -m build
- name: Publish package distributions to Test PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI }}
run: |
uv run python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*