still trying to use venv for packaging p1

This commit is contained in:
Pakobbix 2023-05-27 09:08:07 +02:00
parent 1ffd11eb5b
commit c87e12d75a

View File

@ -23,7 +23,11 @@ jobs:
- name: Create and activate venv - name: Create and activate venv
run: | run: |
python -m venv StartUI_env python -m venv StartUI_env
if [ "$RUNNER_OS" == "Windows" ]; then
StartUI_env\Scripts\activate.bat
else
source StartUI_env/bin/activate source StartUI_env/bin/activate
fi
- name: Install dependencies - name: Install dependencies
run: | run: |