Skip to content

Prepare for release 24.4.1 (#483) #641

Prepare for release 24.4.1 (#483)

Prepare for release 24.4.1 (#483) #641

Workflow file for this run

# Based on
# https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
name: Publish Python distributions to PyPI
on: push
permissions:
contents: read
jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-20.04
permissions:
# needed for PyPI trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
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