Skip to content

Initial commit

Initial commit #25

Workflow file for this run

name: pypi
on: push
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: 3.12
- run: |
python -m pip install build --user
python -m build --sdist --wheel --outdir dist
- uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}