Skip to content

Commit 6c6a51d

Browse files
committed
Fix CI temporary environment setup
Configure the uv project environment from step-level runner variables so GitHub can validate and start the matrix jobs. Refs #2
1 parent f44365a commit 6c6a51d

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- "3.11"
2020
- "3.14"
2121
env:
22-
UV_PROJECT_ENVIRONMENT: ${{ runner.temp }}/generic-rag-venv-${{ matrix.python-version }}
2322
MATRIX_PYTHON: ${{ matrix.python-version }}
2423

2524
steps:
@@ -38,6 +37,13 @@ jobs:
3837
with:
3938
version: "0.12.5"
4039

40+
- name: Configure external uv environment
41+
run: |
42+
set -euo pipefail
43+
printf 'UV_PROJECT_ENVIRONMENT=%s\n' \
44+
"$RUNNER_TEMP/generic-rag-venv-$MATRIX_PYTHON" \
45+
>> "$GITHUB_ENV"
46+
4147
- name: Verify locked environment
4248
run: |
4349
set -euo pipefail

0 commit comments

Comments
 (0)