Skip to content

v4.6.0

v4.6.0 #27

Workflow file for this run

name: Release to PYPI
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: python3 -m pip install --upgrade pip build twine
- name: Build python package
run: python3 -m build
- name: Release python package to PYPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_REPOSITORY: pypi
run: python3 -m twine upload dist/*