From 24fb6306ddc1c642d5d87fa8058c138b31477b8e Mon Sep 17 00:00:00 2001 From: Vayle <76063792+Valorith@users.noreply.github.com> Date: Sat, 24 Jan 2026 14:11:16 -0500 Subject: [PATCH] Update .github/workflows/release.yaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/release.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d8b0b89fc..ad6b0fb24 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -200,7 +200,16 @@ jobs: # Show contents Write-Host "Successfully packaged $($files.Count) files" Write-Host "Package contents:" - Get-ChildItem $outZip | Format-List + Add-Type -AssemblyName System.IO.Compression.FileSystem + $zip = [System.IO.Compression.ZipFile]::OpenRead($outZip) + try { + foreach ($entry in $zip.Entries) { + Write-Host (" - {0} ({1} bytes)" -f $entry.FullName, $entry.Length) + } + } + finally { + $zip.Dispose() + } - name: Upload artifact uses: actions/upload-artifact@v4