Skip to content

Add pyproject.toml and PyPI Trusted Publishing workflow #1

Add pyproject.toml and PyPI Trusted Publishing workflow

Add pyproject.toml and PyPI Trusted Publishing workflow #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install build tools
run: python -m pip install --upgrade pip hatch
- name: Build wheel and sdist
run: hatch build
- name: Upload dist artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
publish:
name: Publish to PyPI
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/ksuid-python/
permissions:
id-token: write # required for Trusted Publishing (OIDC)
steps:
- name: Download dist artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1