Skip to content

chore: publish on pypi with hatch #55

chore: publish on pypi with hatch

chore: publish on pypi with hatch #55

Workflow file for this run

name: Publish
on:
pull_request:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
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 }}