Skip to content

CI: Build with build #5

CI: Build with build

CI: Build with build #5

Workflow file for this run

# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Upload Python Package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- name: Build and check package
run: |
pipx run build
pipx run twine check dist/*
- name: Upload to PyPI
run: pipx run twine upload dist/*
if: ${{ github.event_name == 'release' }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}