Skip to content

4.5.0

4.5.0 #23

Workflow file for this run

name: Release Wheels
on:
release:
types:
- published
jobs:
build_wheels:
uses: ./.github/workflows/run-cibuildwheel.yml
with:
fail-fast: true
build_sdist:
uses: ./.github/workflows/run-sdist.yml
upload_pypi:
needs: [build_wheels, build_sdist]
if: github.event_name == 'release' && github.event.action == 'published'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- run: ls -lR dist
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}