Skip to content

Commit 856b97e

Browse files
Emin017claude
andcommitted
fix(ci): add .venv/bin to PATH so auditwheel is discoverable
uv sync installs auditwheel into .venv/bin/ which is not on the default PATH. Append it via $GITHUB_PATH after uv sync. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e8126d5 commit 856b97e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/actions/build-wheel/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ runs:
3535

3636
- name: Install Python dev dependencies
3737
shell: bash
38-
run: uv sync --all-groups --python 3.11
38+
run: |
39+
uv sync --all-groups --python 3.11
40+
echo "${{ github.workspace }}/.venv/bin" >> "$GITHUB_PATH"
3941
4042
- name: Restore CMake build cache
4143
uses: actions/cache@v4

0 commit comments

Comments
 (0)