Skip to content

Commit 6fc7661

Browse files
committed
fix: update PATH environment variable for UV installation in workflow scripts
1 parent ade3310 commit 6fc7661

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test-python-bindings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
run: |
155155
curl -LsSf https://astral.sh/uv/install.sh | sh
156156
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
157-
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
157+
export PATH="$HOME/.local/bin:$PATH"
158158
uv --version
159159
160160
- name: Download ArcadeDB JARs artifact

.github/workflows/test-python-examples.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ jobs:
180180
run: |
181181
curl -LsSf https://astral.sh/uv/install.sh | sh
182182
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
183+
export PATH="$HOME/.local/bin:$PATH"
183184
uv --version
184185
185186
- name: Install Python build dependencies

0 commit comments

Comments
 (0)