Skip to content

Commit

Permalink
Update make-app.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
LoSk-p authored Mar 19, 2024
1 parent 4266888 commit 3c06862
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/make-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: build with pyinstaller
run: |
cd app
pyinstaller main.py --onefile --windowed --name SmartWaterGUI.dmg
pyinstaller --paths=gui main.py --onefile --windowed --name SmartWaterGUI.dmg
ls
ls dist
- uses: actions/upload-artifact@v2
Expand All @@ -44,7 +44,7 @@ jobs:
- name: build with pyinstaller
run: |
cd app
pyinstaller main.py --onefile --windowed --name SmartWaterGUI
pyinstaller --paths=gui main.py --onefile --windowed --name SmartWaterGUI
- uses: actions/upload-artifact@v2
with:
name: SmartWaterGUI-ubuntu20
Expand All @@ -68,7 +68,7 @@ jobs:
- name: build with pyinstaller
run: |
cd app
pyinstaller main.py --onefile --windowed --name SmartWaterGUI
pyinstaller --paths=gui main.py --onefile --windowed --name SmartWaterGUI
- uses: actions/upload-artifact@v2
with:
name: SmartWaterGUI-ubuntu-latest
Expand All @@ -87,7 +87,7 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
cd app
pyinstaller main.py --onefile --windowed --name SmartWaterGUI.exe
pyinstaller --paths=gui main.py --onefile --windowed --name SmartWaterGUI.exe
ls dist/
- uses: actions/upload-artifact@v2
with:
Expand All @@ -107,7 +107,7 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
cd app
pyinstaller main.py --onefile --windowed --name SmartWaterGUI.exe
pyinstaller --paths=gui main.py --onefile --windowed --name SmartWaterGUI.exe
ls dist/
- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 3c06862

Please sign in to comment.