We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46d057b commit 8e39e95Copy full SHA for 8e39e95
action.yml
@@ -24,8 +24,10 @@ runs:
24
- name: Install uv
25
shell: bash
26
run: |
27
- echo "Installing uv.. HOME=${HOME}"
28
- curl -LsSf https://astral.sh/uv/install.sh | bash --login
+ installation_directory="${HOME}/.setup-python-amazon-linux/uv"
+ 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}"
31
32
- name: Find desired python version
33
id: find-desired-python-version
0 commit comments