Skip to content

0.21.4

0.21.4 #21

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Hatch
run: pipx install hatch
- name: Build dist
run: hatch build
- name: Publish
run: hatch publish -u __token__ -a ${{ secrets.PYPI_API_TOKEN }}