Skip to content

Commit 32dd753

Browse files
[CI] Fix wheel location before publishing (#32)
# Description This PR fixes wheels location when publishing using `uv`, otherwise, would return wheel not found when the github action executes
1 parent 279e6b7 commit 32dd753

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,4 +189,5 @@ jobs:
189189
190190
- name: Publish package
191191
run: |
192-
uv publish
192+
mv */**/*.whl .
193+
uv publish *.whl

0 commit comments

Comments
 (0)