We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46d057b + 240524f commit 7fedfd6Copy full SHA for 7fedfd6
action.yml
@@ -24,8 +24,11 @@ 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
+ uv_version="0.5.1"
30
+ curl -LsSf "https://github.com/astral-sh/uv/releases/download/${uv_version}/uv-installer.sh" | UV_UNMANAGED_INSTALL="${installation_directory}" bash --login
31
+ echo "${installation_directory}" >> "${GITHUB_PATH}"
32
33
- name: Find desired python version
34
id: find-desired-python-version
0 commit comments