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 ca06ae9 commit 7636626
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/make-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: build with pyinstaller
run: |
cd app
pyinstaller app/main.py --onefile --windowed --name SmartWaterGUI.dmg
pyinstaller main.py --onefile --windowed --name SmartWaterGUI.dmg
ls
ls dist
- uses: actions/upload-artifact@v2
with:
name: SmartWaterGUI-macos
name: SmartWaterGUI-macos.dmg
path: dist/SmartWaterGUI.dmg

buildUbuntu20:
Expand All @@ -44,7 +44,7 @@ jobs:
- name: build with pyinstaller
run: |
cd app
pyinstaller app/main.py --onefile --windowed --name SmartWaterGUI
pyinstaller 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 app/main.py --onefile --windowed --name SmartWaterGUI
pyinstaller 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 app/main.py --onefile --windowed --name SmartWaterGUI.exe
pyinstaller 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 app/main.py --onefile --windowed --name SmartWaterGUI.exe
pyinstaller main.py --onefile --windowed --name SmartWaterGUI.exe
ls dist/
- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 7636626

Please sign in to comment.