Skip to content

Commit 4e6a463

Browse files
committed
Change workflow dummy
1 parent ae84ce4 commit 4e6a463

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflow/pyinstaller-build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-python@v2
1919
with:
20-
python-version: 3.10.7
21-
- run: make install
22-
- run: make build-app
20+
python-version: 3.9
21+
- run: pip install -r requirements.txt
22+
- run: python scripts/download-tools.py
23+
- run: pyinstaller openandroidinstaller/openandroidinstaller.py --noconsole --noconfirm --onefile --icon "/assets/favicon.ico" --add-data "openandroidinstaller/assets:assets" --add-binary "openandroidinstaller/bin/adb:bin" --add-binary "openandroidinstaller/bin/fastboot:bin" --add-binary "openandroidinstaller/bin/heimdall:bin"
2324
# Optionally verify that it works (provided that it does not need user interaction)
2425
#- run: ./dist/your-code/your-code
2526
- uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)