Skip to content

chore: publish on pypi with hatch #54

chore: publish on pypi with hatch

chore: publish on pypi with hatch #54

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: Run tests
run: hatch run test:test
- name: Build dist
run: hatch build
# - name: Publish
# run: hatch publish -u __token__ -a ${{ secrets.PYPI_API_TOKEN }}