Skip to content

v1.7.0

v1.7.0 #28

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: |
pip install hatch hatch-vcs
hatch build
hatch publish --user=__token__ --auth=${{ secrets.PYPI_TOKEN }}