Skip to content

Bump to v2.3.1

Bump to v2.3.1 #27

Workflow file for this run

name: Upload to PyPI
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v5.0.0
with:
python-version: 3.x
- run: pip install build twine
- run: python -m build --wheel --sdist
- run: twine upload --skip-existing dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}