Make dark mode work on Windows 10/11 #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release | |
permissions: write-all | |
on: | |
workflow_dispatch: {} | |
push: | |
paths: | |
- '.github/workflows/windows_build.yml' | |
- 'guiunstable.py' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Download Heimdall | |
run: | | |
Invoke-WebRequest https://bitbucket.org/benjamin_dobell/heimdall/downloads/heimdall-suite-1.4.0-win32.zip -OutFile heimdall.zip | |
expand-archive -path heimdall.zip -DestinationPath heimdall | |
Move-Item -Path "heimdall/Heimdall Suite/" -Destination heimdalll | |
rmdir -r heimdall | |
mv heimdalll heimdall | |
rm heimdall/Qt* | |
- name: Build | |
run: | | |
pyinstaller --add-data ./heimdall:heimdall --add-data "./devices.json:." --add-data "./python-logo-only.svg:." --onefile -w guiunstable.py | |
mv dist/* dist/SamsungFlashGUI.exe | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: windows | |
files: | | |
dist/SamsungFlashGUI.exe | |
env: | |
tag_name: windows |