Skip to content

Release v0.16.0

Release v0.16.0 #20

Workflow file for this run

name: Publish Python distribution to PyPI
on:
workflow_dispatch:
release:
types: published
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install pypa/build
run: python -m pip install build
working-directory: ./
- name: Build package
run: python -m build
working-directory: ./
- name: Publish to Test PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
packages_dir: ./dist