Skip to content

Sync monorepo state at "Fix pyproject.toml" (#122) #2

Sync monorepo state at "Fix pyproject.toml" (#122)

Sync monorepo state at "Fix pyproject.toml" (#122) #2

Workflow file for this run

name: Build and Release Python Package
on:
push:
tags:
- 'v*'
jobs:
build-and-release:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true