Skip to content

Build, Test, and Publish on Release #35

Build, Test, and Publish on Release

Build, Test, and Publish on Release #35

Workflow file for this run

name: Build and Publish on Release
on:
release:
types: [published]
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install twine build
- name: Build the package
run: |
python -m build
- name: Publish the package to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m twine upload dist/*