Skip to content

Update windows_build.yml #6

Update windows_build.yml

Update windows_build.yml #6

Workflow file for this run

name: Build and Release
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 --onefile guiunstable.py
mv dist/* dist/SamsungFlashGUI.exe
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
dist/SamsungFlashGUI.exe
env:
tag_name: windows