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 70c7bfa commit ca06ae9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/make-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
pip install -r requirements.txt
- name: build with pyinstaller
run: |
cd app
pyinstaller app/main.py --onefile --windowed --name SmartWaterGUI.dmg
ls
ls dist
Expand All @@ -42,6 +43,7 @@ jobs:
pip install -r requirements.txt
- name: build with pyinstaller
run: |
cd app
pyinstaller app/main.py --onefile --windowed --name SmartWaterGUI
- uses: actions/upload-artifact@v2
with:
Expand All @@ -65,6 +67,7 @@ jobs:
pip install -r requirements.txt
- name: build with pyinstaller
run: |
cd app
pyinstaller app/main.py --onefile --windowed --name SmartWaterGUI
- uses: actions/upload-artifact@v2
with:
Expand All @@ -83,6 +86,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
cd app
pyinstaller app/main.py --onefile --windowed --name SmartWaterGUI.exe
ls dist/
- uses: actions/upload-artifact@v2
Expand All @@ -102,9 +106,10 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
cd app
pyinstaller app/main.py --onefile --windowed --name SmartWaterGUI.exe
ls dist/
- uses: actions/upload-artifact@v2
with:
name: SmartWaterGUI-win19
path: dist/SmartWaterGUI.exe
path: dist/SmartWaterGUI.exe

0 comments on commit ca06ae9

Please sign in to comment.