deleted venv
Some checks reported warnings
Package Release / package (ubuntu-latest) (push) Has been cancelled
Package Release / package (windows-latest) (push) Has been cancelled

This commit is contained in:
Pakobbix 2023-05-27 13:21:57 +02:00 committed by GitHub
parent 807dad51dd
commit a07146e879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,15 +22,7 @@ jobs:
- name: Create and activate venv - name: Create and activate venv
run: python -m venv StartUI_env run: python -m venv StartUI_env
- name: activate venv
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
StartUI_env\Scripts\activate
else
source StartUI_env/bin/activate
fi
- name: Upgrade Pip - name: Upgrade Pip
run: python -m pip install --upgrade pip run: python -m pip install --upgrade pip
@ -42,12 +34,6 @@ jobs:
- name: Build and package - name: Build and package
run: pyinstaller --noconfirm --onefile --windowed StartUI.py --add-data="webuiGUI.py:." run: pyinstaller --noconfirm --onefile --windowed StartUI.py --add-data="webuiGUI.py:."
- name: deactivate venv
run: deactivate
- name: delete venv
run: rm -rf StartUI_env
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with: