Skip to content

chore: release v2.8.0 #14

chore: release v2.8.0

chore: release v2.8.0 #14

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- '**'
workflow_dispatch: ~
jobs:
build-n-publish:
name: Build and publish package to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install pypa/build
run: |
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Publish distribution to PyPI
# if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
print_hash: true
skip_existing: true