Skip to content

v3.7.0

v3.7.0 #85

Workflow file for this run

name: Build and Publish
on:
release:
types: [published]
permissions:
contents: read
jobs:
# Build the full wheel matrix via the shared reusable workflow.
build:
uses: ./.github/workflows/build-wheels.yml
# Publish to PyPI
publish:
name: Publish to PyPI
needs: build
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
steps:
- name: Download all artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: dist
merge-multiple: true
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1