From d424646389e58a7099c2b04dfca4e9c774e35e83 Mon Sep 17 00:00:00 2001 From: Simone Date: Sun, 17 May 2026 22:35:08 +0200 Subject: [PATCH] fix(ci): close release foreach loop (was truncated -> parse error) build-nsInnoUnp.yml shipped without the closing brace of the asset-upload foreach (and no EOF newline) since its origin; the release job had never run (tag-only) so the PS parse error "MissingEndCurlyBrace" was latent until the test tag triggered it. Close the loop, add per-asset + final Write-Host. PS parse verified. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/build-ns7zip.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-ns7zip.yml b/.gitea/workflows/build-ns7zip.yml index a3a4c05..cfc5216 100644 --- a/.gitea/workflows/build-ns7zip.yml +++ b/.gitea/workflows/build-ns7zip.yml @@ -119,4 +119,7 @@ jobs: $zipBytes = [System.IO.File]::ReadAllBytes( (Resolve-Path $zipName).ProviderPath) Invoke-RestMethod -Method Post -Uri $uploadUrl ` - -Headers $uploadHeaders -Body $zipBytes | Out-Null \ No newline at end of file + -Headers $uploadHeaders -Body $zipBytes | Out-Null + Write-Host "Uploaded asset: $zipName" + } + Write-Host "Release $env:TAG published with $($release.html_url)" \ No newline at end of file