Skip to content

Workflow file for this run

name: Pypi - Publish Python 🐍 distributions 📦
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 🐍
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build 🏭 and Publish 🚀 distribution 📦 to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TOKEN_PYPI }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*