Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: build-wheels
on:
push:
branches: ["main", "master"]
tags: ["v*"]
pull_request:
workflow_dispatch:

Expand Down Expand Up @@ -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
Copy link

Copilot AI Feb 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The download-artifact action version (v7) is incompatible with the upload-artifact version (v4) used in the build job at line 41. Actions v4 artifacts cannot be downloaded with actions v7. Change this to actions/download-artifact@v4 to match the upload action version, or upgrade both to the latest compatible versions.

Suggested change
uses: actions/download-artifact@v7
uses: actions/download-artifact@v4

Copilot uses AI. Check for mistakes.
with:
pattern: wheels-*
path: wheelhouse
merge-multiple: true

- name: Publish GitHub Release
uses: softprops/action-gh-release@v2
with:
files: wheelhouse/*.whl