Skip to content

0.1.2

0.1.2 #4

Workflow file for this run

name: Publish
on:
workflow_dispatch:
release:
types: [published]
permissions:
contents: read
jobs:
publish:
name: "Publish release"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "3.10"
cache: "pip"
- name: Install Dependencies
run: pip install hatch
- name: Build
run: hatch build
- name: Publish
env:
HATCH_INDEX_USER: __token__
HATCH_INDEX_AUTH: ${{ secrets.PYPI_TOKEN }}
run: hatch publish