Skip to content

Commit 98cce0d

Browse files
Fix release workflow after build system change
In commit d4e84fd, the build system was changed from cibuildwheel to uv build: - Before: cibuildwheel created multiple platform-specific wheels with names like 'wheels-ubuntu-latest-3.12' - After: uv build creates a single pure Python wheel uploaded as 'wheels' However, the release job still used the old pattern 'wheels-*' which no longer matches the new artifact name 'wheels', causing 0 artifacts to be downloaded and PyPI upload to fail with 'No files found to publish'. Changes: - Update artifact download pattern from 'wheels-*' to 'wheels' to match new build system - This fixes the v0.56.1 release failure and aligns with the pure Python wheel approach Fixes: https://github.com/codegen-sh/codegen/actions/runs/15960085099
1 parent d4e84fd commit 98cce0d

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)