Commit 98cce0d
committed
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/159600850991 parent d4e84fd commit 98cce0d
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | | - | |
| 85 | + | |
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
| |||
0 commit comments