From 24ca00463736b6a9282d3473b3f2b287b833ab46 Mon Sep 17 00:00:00 2001 From: 3096 <7045393+3096@users.noreply.github.com> Date: Wed, 8 Jul 2026 10:57:59 -0700 Subject: [PATCH] chore: remove accidentally committed post-build step it was accidentally left in in the last PR. build assets are not to be uploaded --- build.ps1 | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/build.ps1 b/build.ps1 index a095a0a2..f5b4c6c7 100755 --- a/build.ps1 +++ b/build.ps1 @@ -83,14 +83,3 @@ if ($args.Count -gt 0 -and $args[0] -eq "-Configuration") { dotnet build "./AquaMai.slnx" -c $Configuration if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } - -# ========================================== -# 4. PostBuild: Export build-assets to artifact -# ========================================== -if (Test-Path ".\build-assets") { - Write-Host "Zipping build-assets for CI artifact extraction..." -ForegroundColor Cyan - if (Test-Path ".\Output\build-assets.zip") { Remove-Item ".\Output\build-assets.zip" -Force } - Compress-Archive -Path ".\build-assets" -DestinationPath ".\Output\build-assets.zip" -Force - if (Test-Path ".\Output\AquaMai.build-assets.zip.toml") { Remove-Item ".\Output\AquaMai.build-assets.zip.toml" -Force } - Rename-Item -Path ".\Output\build-assets.zip" -NewName "AquaMai.build-assets.zip.toml" -Force -}