Skip to content

Commit b5aaea0

Browse files
kkraus14cursoragent
andcommitted
Fix uv build output directory in workspace context
uv build from a workspace member directory outputs to the workspace root's dist/, not the member's dist/. Add --output-dir dist to both cuda_pathfinder and cuda_python uv build calls so wheels land where subsequent steps expect them. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 9c9757f commit b5aaea0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
- name: Build and check cuda.pathfinder wheel
118118
run: |
119119
pushd cuda_pathfinder
120-
uv build --wheel
120+
uv build --wheel --output-dir dist
121121
popd
122122
123123
- name: List the cuda.pathfinder artifacts directory
@@ -271,7 +271,7 @@ jobs:
271271
if: ${{ strategy.job-index == 0 && inputs.host-platform == 'linux-64' }}
272272
run: |
273273
pushd cuda_python
274-
uv build --wheel
274+
uv build --wheel --output-dir dist
275275
popd
276276
277277
- name: List the cuda-python artifacts directory

0 commit comments

Comments
 (0)