We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae84ce4 commit 4e6a463Copy full SHA for 4e6a463
1 file changed
.github/workflow/pyinstaller-build.yaml
@@ -17,9 +17,10 @@ jobs:
17
- uses: actions/checkout@v2
18
- uses: actions/setup-python@v2
19
with:
20
- python-version: 3.10.7
21
- - run: make install
22
- - run: make build-app
+ python-version: 3.9
+ - run: pip install -r requirements.txt
+ - 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"
24
# Optionally verify that it works (provided that it does not need user interaction)
25
#- run: ./dist/your-code/your-code
26
- uses: actions/upload-artifact@v3
0 commit comments