We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac06c36 commit 676e66bCopy full SHA for 676e66b
.github/workflows/github-ci.yml
@@ -35,12 +35,16 @@ jobs:
35
with:
36
python-version: "3.12"
37
38
+ - name: Record original PATH
39
+ id: record_original_path
40
+ run: echo "PATH_ORIGINAL=$PATH" >> $GITHUB_OUTPUT
41
+
42
- name: Activate .venv
43
run: |
44
python3 -m pip install -r requirement-uv.txt
45
uv sync --frozen --no-install-project
46
. .venv/bin/activate
- echo PATH=$PATH >> $GITHUB_ENV
47
+ echo PATH=${GITHUB_WORKSPACE}/.venv/bin:$PATH >> $GITHUB_ENV
48
49
- name: Build And Assemble
50
@@ -57,7 +61,7 @@ jobs:
57
61
if-no-files-found: "error"
58
62
59
63
- name: Deactivate .venv
60
- run: deactivate
64
+ run: echo PATH=${{ steps.record_original_path.outputs.PATH_ORIGINAL }}
65
66
release:
67
runs-on: ubuntu-latest
0 commit comments