Skip to content

Commit

Permalink
fix: correct venv activation script paths
Browse files Browse the repository at this point in the history
  • Loading branch information
HsiangNianian committed Dec 8, 2024
1 parent ba62f74 commit a209db4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
run: |
# cp ./OlivOS/hook.py ./OlivOS/hook_bak.py
# cp ./OlivOS/hook_pack.py ./OlivOS/hook.py
source .vnev/bin/activate
source .venv/bin/activate
uv run scripts.py build
env:
OLIVOS_ENV_PACK: "1"
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
run: |
# cp ./OlivOS/hook.py ./OlivOS/hook_bak.py
# cp ./OlivOS/hook_pack_debug.py ./OlivOS/hook.py
source .vnev/bin/activate
source .venv/bin/activate
uv run scripts.py build debug
env:
OLIVOS_ENV_PACK: "1"
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
run: |
# cp ./OlivOS/hook.py ./OlivOS/hook_bak.py
# cp ./OlivOS/hook_pack_debug.py ./OlivOS/hook.py
source .vnev/bin/activate
source .venv/bin/activate
uv run scripts.py build
env:
OLIVOS_ENV_DEBUG: "1"
Expand Down Expand Up @@ -411,7 +411,7 @@ jobs:
run: |
# cp ./OlivOS/hook.py ./OlivOS/hook_bak.py
# cp ./OlivOS/hook_pack_debug.py ./OlivOS/hook.py
source .vnev/bin/activate
source .venv/bin/activate
uv run scripts.py build
env:
OLIVOS_ENV_DEBUG: "1"
Expand Down

0 comments on commit a209db4

Please sign in to comment.