CD - Upload PyPI #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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.7 | |
# Install dependencies | |
- name: "Installs dependencies" | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install setuptools wheel 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 }} |