2026-03-25 12:59:00 +01:00
|
|
|
$buildName = if ($args[1]) { $args[1] } else { "0.0.0" }
|
|
|
|
|
$buildNumber = "$buildName-$(Get-Date -Format 'yyyyMMddHHmmss')"
|
|
|
|
|
|
2026-03-25 12:27:33 +01:00
|
|
|
cd $PSScriptRoot
|
|
|
|
|
|
|
|
|
|
# Build the Windows application using Flutter
|
2026-03-25 12:59:00 +01:00
|
|
|
flutter build windows --build-name=$buildName --build-number=$buildNumber
|
2026-03-25 12:27:33 +01:00
|
|
|
# Build the Windows installer using Inno Setup Compiler (ISCC.exe)
|
|
|
|
|
ISCC.exe ./busylight-buddy-windows-installer-builder.iss
|