Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
Signed-off-by: Gary Oberbrunner <[email protected]>
  • Loading branch information
garyo committed Dec 13, 2024
1 parent 204cd09 commit ab15d9a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,14 @@ jobs:
# uv also installs a symlink in $HOME/.local/bin but because
# that is only a symlink, it causes problems with pip and venv.
# As a workaround, prepend the actual bin dir to $PATH.
UV_PYTHON_BIN=$(uv python dir)/cpython*/bin
PATH=$UV_PYTHON_BIN:$PATH
ls $(uv python dir)
uv_python_dir=$(uv python dir)
uv_cpython_name=$(/bin/ls -1 $(uv python dir))
PATH=$uv_python_dir/$uv_cpython_name/bin:$PATH
# Save updated path
echo "PATH=$PATH" >> $GITHUB_ENV
echo uv python is in $UV_PYTHON_BIN
echo Updated PATH to include that: $PATH
- name: Check python, uv paths
run: |
Expand Down

0 comments on commit ab15d9a

Please sign in to comment.