Skip to content

Add CI and PyPI publish workflows #1

Add CI and PyPI publish workflows

Add CI and PyPI publish workflows #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags: ['v*']
permissions:
contents: read
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install build tools
run: pip install build
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1