feat: Add SHA256 checksum generation to Windows build script

- Automatically generate checksum file after building exe
- Checksum saved as WebDropBridge.exe.sha256
- Required for package uploads
- Also increase upload timeout to 600s for large files
This commit is contained in:
claudi 2026-01-28 15:05:37 +01:00
parent 847692eef6
commit 9c8a8d269c
2 changed files with 25 additions and 1 deletions

View file

@ -103,7 +103,9 @@ try {
-Method PUT `
-Headers $headers `
-InFile $ExePath `
-ContentType "application/octet-stream"
-ContentType "application/octet-stream" `
-TimeoutSec 600 `
-ErrorAction Stop
Write-Host "[OK] Executable uploaded successfully" -ForegroundColor Green
}