Release Process
June 19, 2026 ยท View on GitHub
Burrow Windows preview releases follow the upstream Burrow install rhythm: package manager first, direct download as a fallback.
Local Release
.\scripts\build-release.ps1
The script:
- restores the solution,
- builds the app for x64,
- builds and runs tests,
- publishes the unpackaged WinUI app,
- creates the unsigned Inno Setup installer,
- creates the portable ZIP fallback,
- writes
SHA256SUMS.txt, - writes a release notes draft,
- writes WinGet manifests for
Caezium.Burrow.
The generated user-facing artifacts are:
artifacts\release\Burrow-v0.1.0-preview.1-win-x64-setup.exeartifacts\release\Burrow-v0.1.0-preview.1-win-x64.zipartifacts\release\SHA256SUMS.txtartifacts\release\winget\Caezium\Burrow\0.1.0-preview.1\
The preview setup executable is unsigned. Windows SmartScreen may warn, and stricter Application Control policies can block installer execution until a signed release is available.
WinGet
After publishing the GitHub Release, submit the generated manifest directory to microsoft/winget-pkgs.
Preview validation:
winget validate .\artifacts\release\winget\Caezium\Burrow\0.1.0-preview.1
winget install --manifest .\artifacts\release\winget\Caezium\Burrow\0.1.0-preview.1
winget validate can report that dependency package validation is deferred for Microsoft.DotNet.DesktopRuntime.8; that dependency must still exist in the community repository before submission.
Once accepted, users install with:
winget install --id Caezium.Burrow -e
Required Smoke Tests
After a release build, run:
.\run-local.ps1 -NoBuild -SmokeTest -Restart -RequireHealth -Route settings -TimeoutSeconds 60
.\run-local.ps1 -NoBuild -SmokeTest -Restart -RequireHealth -Route optimize -OptimizeAutoScan -TimeoutSeconds 120
When validating UI changes, capture repeatable local screenshots:
.\run-local.ps1 -NoBuild -SmokeTest -Restart -RequireHealth -Route history -ScreenshotPath artifacts\ui-smoke\burrowwin-history.png -TimeoutSeconds 60
.\run-local.ps1 -NoBuild -SmokeTest -Restart -RequireHealth -Route clean -CleanAutoScan -ScreenshotPath artifacts\ui-smoke\burrowwin-clean.png -TimeoutSeconds 120
CI does not run GUI smoke because GitHub-hosted Windows runners do not provide a normal interactive desktop session.