Skip to content

Commit 8e39e95

Browse files
Use unmanaged installation
1 parent 46d057b commit 8e39e95

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ runs:
2424
- name: Install uv
2525
shell: bash
2626
run: |
27-
echo "Installing uv.. HOME=${HOME}"
28-
curl -LsSf https://astral.sh/uv/install.sh | bash --login
27+
installation_directory="${HOME}/.setup-python-amazon-linux/uv"
28+
echo "Installing uv.. installation_directory=${installation_directory}"
29+
curl -LsSf https://astral.sh/uv/install.sh | env UV_UNMANAGED_INSTALL="${installation_directory}" sh
30+
echo "${installation_directory}" >> "${GITHUB_PATH}"
2931
3032
- name: Find desired python version
3133
id: find-desired-python-version

0 commit comments

Comments
 (0)