Skip to content

bump version

bump version #22

Workflow file for this run

name: PyPI Release
on:
push:
tags:
- "v[0-9].[0-9]+.[0-9]+*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Hatch
run: pip install hatch
- name: Publish on PyPi
env:
HATCH_INDEX_USER: __token__
HATCH_INDEX_AUTH: ${{ secrets.PYPI_API_TOKEN }}
run: |
hatch build
hatch publish -y