Skip to content

Commit b27f8f3

Browse files
Fix release workflow artifact pattern mismatch
The release job was failing because it was looking for artifacts with pattern 'wheels-*' but the build job uploads an artifact named 'wheels'. This caused 0 artifacts to be downloaded, resulting in 'No files found to publish' error during PyPI upload. Changes: - Update artifact download pattern from 'wheels-*' to 'wheels' to match actual artifact name - This fixes the configuration race condition between build and release jobs Fixes the v0.56.1 release failure where PyPI upload failed due to missing artifacts.
1 parent d4e84fd commit b27f8f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
with:
8383
path: dist
8484
merge-multiple: true
85-
pattern: wheels-*
85+
pattern: wheels
8686

8787
- name: Release PyPI
8888
uses: ./.github/actions/release-pypi

0 commit comments

Comments
 (0)