Skip to content

Switch to uv and add CI/CD #1

Switch to uv and add CI/CD

Switch to uv and add CI/CD #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*'
jobs:
publish:
name: Build and publish Python distribution
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/heatmapts
permissions:
# Required for Trusted Publishing (OIDC)
id-token: write
contents: read
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true
- name: Build package
run: uv build
- name: Publish to PyPI
run: uv publish