Skip to content

Release 1.6.0

Release 1.6.0 #40

Workflow file for this run

# Publishes to PyPI upon creation of a release
name: Upload Package to PyPI
defaults:
run:
shell: bash
on: # Runs everytime a release is added to the repository
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
env:
python-version: 3.12
steps:
- uses: actions/checkout@v4
- name: Install hatch
run: pipx install hatch
- name: Build wheels and sdist
run: make build
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
print-hash: true
password: ${{ secrets.PYPI_API_TOKEN }}