From a91c48428667ff0b7e5b03aa18618e11337eb104 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 17:05:24 +0000 Subject: [PATCH 1/2] Initial plan From 017deb98fce5fc8666dd1237510957b9304ea971 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 17:07:43 +0000 Subject: [PATCH 2/2] Add GitHub Release job to publish binary wheels on version tags Co-authored-by: alexlib <747110+alexlib@users.noreply.github.com> --- .github/workflows/cibuildwheel.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 6c934eb..4eb9e70 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -3,6 +3,7 @@ name: build-wheels on: push: branches: ["main", "master"] + tags: ["v*"] pull_request: workflow_dispatch: @@ -41,3 +42,23 @@ jobs: with: name: wheels-${{ matrix.os }} path: wheelhouse/*.whl + + release: + name: Create GitHub Release + needs: build + runs-on: ubuntu-latest + if: startsWith(github.ref, 'refs/tags/v') + permissions: + contents: write + steps: + - name: Download all wheels + uses: actions/download-artifact@v7 + with: + pattern: wheels-* + path: wheelhouse + merge-multiple: true + + - name: Publish GitHub Release + uses: softprops/action-gh-release@v2 + with: + files: wheelhouse/*.whl