We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2aedb commit 904f5b4Copy full SHA for 904f5b4
1 file changed
.github/workflows/build-wheels.yml
@@ -75,11 +75,18 @@ jobs:
75
- name: Download wheel artifacts
76
uses: actions/download-artifact@v4
77
with:
78
+ pattern: wheels-*
79
path: ./artifacts
80
+ merge-multiple: true
81
+
82
+ - name: List downloaded wheels
83
+ run: |
84
+ echo "Contents of ./artifacts:"
85
+ ls -R ./artifacts || echo "No artifacts found"
86
87
- name: Create / update GitHub Release and upload wheels
88
uses: softprops/action-gh-release@v2
89
- files: artifacts/**/*.whl
90
+ files: artifacts/*.whl
91
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments