Files
aza/AzA march 2026 - Kopie (14)/ship_release.ps1
2026-04-19 20:41:37 +02:00

25 lines
570 B
PowerShell
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ship_release.ps1 Kompletter AZA Release: Build + Upload
$ErrorActionPreference = "Stop"
$projectRoot = $PSScriptRoot
Write-Host ""
Write-Host "[Build] release.ps1..."
& (Join-Path $projectRoot "release.ps1")
if ($LASTEXITCODE -ne 0) {
Write-Error "ABBRUCH: release.ps1 fehlgeschlagen."
exit 1
}
Write-Host ""
Write-Host "[Publish] publish_update.ps1..."
& (Join-Path $projectRoot "publish_update.ps1")
if ($LASTEXITCODE -ne 0) {
Write-Error "ABBRUCH: publish_update.ps1 fehlgeschlagen."
exit 1
}
Write-Host ""
Write-Host "FERTIG"
Write-Host ""