Compare commits

..

No commits in common. "1ffd11eb5bc60ebb1bdd3cf6eb7856bdae6393c6" and "b2f2a894c97834081fbdec63afe93f62b1a20b66" have entirely different histories.

View File

@ -20,11 +20,6 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Create and activate venv
run: |
python -m venv StartUI_env
source StartUI_env/bin/activate
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
@ -32,19 +27,11 @@ jobs:
pip install pyinstaller pip install pyinstaller
- name: Build and package - name: Build and package
run: pyinstaller --noconfirm --onefile --windowed StartUI.py --add-data="webuiGUI.py:."
- name: Leave venv and delete
run: | run: |
if [ "$RUNNER_OS" == "Windows" ]; then pyinstaller --noconfirm --onefile --windowed StartUI.py --add-data "webuiGUI.py:."
deactivate.bat
else
deactivate
fi
rm -rf StartUI_env
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: ${{ matrix.os }}-binary-v1.6 name: ${{ matrix.os }}-binary-v1.6
path: dist path: dist