Skip to content

Commit 904f5b4

Browse files
Fix release artifact upload
1 parent 4f2aedb commit 904f5b4

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/build-wheels.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,18 @@ jobs:
7575
- name: Download wheel artifacts
7676
uses: actions/download-artifact@v4
7777
with:
78+
pattern: wheels-*
7879
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"
7986
8087
- name: Create / update GitHub Release and upload wheels
8188
uses: softprops/action-gh-release@v2
8289
with:
83-
files: artifacts/**/*.whl
90+
files: artifacts/*.whl
8491
env:
85-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)