Skip to content

Teloclip v0.0.5

Teloclip v0.0.5 #1

Workflow file for this run

name: Publish to PyPI
on:
release:
types:
- published
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Hatch
run: pip install hatch
- name: Build the package with Hatch
run: hatch build
- name: Publish to PyPI
env:
HATCH_INDEX_USER: __token__
HATCH_INDEX_AUTH: ${{ secrets.TELOCLIP_PYPI_TOKEN }}
run: hatch publish