Skip to content

CD - Upload PyPI

CD - Upload PyPI #6

Workflow file for this run

# This workflow will install Python dependencies and upload a version in the PyPI
name: CD - Upload PyPI
on:
release:
types: [ released ]
jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Sets up python
- uses: actions/setup-python@v2
with:
python-version: 3.12
# Install dependencies
- name: "Installs dependencies"
run: |
python3 -m pip install --upgrade pip
python3 -m pip install setuptools twine
python3 -m pip install .
# Build and upload to PyPI
- name: "Builds and uploads to PyPI"
run: |
python3 -m build
python3 -m twine check dist/*
python3 -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}