Remove Minecraft.Client.pdb from nightly release upload

Updated `Update-NightlyRelease.ps1` to exclude the upload of the `Minecraft.Client.pdb` file. The asset list in the log output has also been adjusted to reflect this change.
This commit is contained in:
Revela 2026-03-17 18:47:30 -05:00
parent b0b358c44e
commit 80ba2e0762

View file

@ -282,7 +282,6 @@ $uploadBase = "https://uploads.github.com/repos/$RepoOwner/$RepoName/releases/$r
$filesToUpload = @(
@{ Path = $ZipPath; Name = $ZipName; ContentType = "application/zip" }
@{ Path = Join-Path $ReleaseDir "Minecraft.Client.exe"; Name = "Minecraft.Client.exe"; ContentType = "application/octet-stream" }
@{ Path = Join-Path $ReleaseDir "Minecraft.Client.pdb"; Name = "Minecraft.Client.pdb"; ContentType = "application/octet-stream" }
)
foreach ($file in $filesToUpload) {
@ -311,7 +310,7 @@ Write-Host ""
Write-Host "==> Nightly releases updated successfully!" -ForegroundColor Green
Write-Host " Commit: $shortHash"
Write-Host " Client title: $newTitle"
Write-Host " Client assets: $ZipName, Minecraft.Client.exe, Minecraft.Client.pdb"
Write-Host " Client assets: $ZipName, Minecraft.Client.exe"
Write-Host " Server title: $serverNewTitle"
Write-Host " Server assets: $ServerZipName"
Write-Host " Archive: $archiveFolder"