Skip to content

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

Upload Python Package to PyPI when a Release is Created

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

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-24.04
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
- name: Build package
run: uv build
- name: Publish package distributions to Test PyPI
run: |
uv publish -t ${{ secrets.PYPI }} --publish-url https://upload.pypi.org/legacy/ dist/*