Skip to content

Build and publish Python distribution 📦 to PyPI #7

Build and publish Python distribution 📦 to PyPI

Build and publish Python distribution 📦 to PyPI #7

Workflow file for this run

name: Upload Python Package to PyPI
on:
release:
types: [created]
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
make venv
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
make twine-upload