9 lines
373 B
PowerShell
9 lines
373 B
PowerShell
$buildName = if ($args[1]) { $args[1] } else { "0.0.0" }
|
|
$buildNumber = "$(Get-Date -Format 'yyyyMMddHHmmss')"
|
|
|
|
cd $PSScriptRoot
|
|
|
|
# Build the Windows application using Flutter
|
|
flutter build windows --build-name=$buildName --build-number=$buildNumber
|
|
# Build the Windows installer using Inno Setup Compiler (ISCC.exe)
|
|
ISCC.exe ./busylight-buddy-windows-installer-builder.iss |