We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3aa60c commit c0531d5Copy full SHA for c0531d5
.github/workflows/wheel.yml
@@ -47,6 +47,24 @@ jobs:
47
name: wheels-${{ matrix.os }}
48
path: wheelhouse
49
50
+ # combine all wheels into one artifact
51
+ combine_wheels:
52
+ needs: [build_wheels]
53
+ runs-on: ubuntu-latest
54
+ steps:
55
+ - uses: actions/download-artifact@v4
56
+ with:
57
+ # unpacks all CIBW artifacts into dist/
58
+ pattern: wheels-*
59
+ path: dist
60
+ merge-multiple: true
61
+
62
+ - name: Upload Wheels to artifact
63
+ uses: actions/upload-artifact@v4
64
65
+ name: wheels-all
66
67
68
# https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml
69
upload_pypi:
70
needs: [build_wheels]
0 commit comments