mirror of
https://github.com/Pakobbix/StartUI-oobabooga-webui
synced 2026-08-18 12:30:58 +00:00
Compare commits
10
Commits
1.6
...
a07146e879
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a07146e879 | ||
|
|
807dad51dd | ||
|
|
395c347020 | ||
|
|
a75a8f42bc | ||
|
|
24e5876eff | ||
|
|
c87e12d75a | ||
|
|
1ffd11eb5b | ||
|
|
311cbfed75 | ||
|
|
646b7419a5 | ||
|
|
0fb9a42cc6 |
@@ -20,18 +20,22 @@ 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
|
||||||
|
|
||||||
|
- name: Upgrade Pip
|
||||||
|
run: python -m pip install --upgrade pip
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
pip install pyinstaller
|
pip install pyinstaller
|
||||||
|
|
||||||
- name: Build and package
|
- name: Build and package
|
||||||
run: |
|
run: pyinstaller --noconfirm --onefile --windowed StartUI.py --add-data="webuiGUI.py:."
|
||||||
pyinstaller --noconfirm --onefile --windowed StartUI.py --add-data "webuiGUI.py:."
|
|
||||||
|
|
||||||
- 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
|
||||||
|
|||||||
Reference in New Issue
Block a user