Update .github/workflows/release.yaml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Vayle 2026-01-24 14:11:16 -05:00 committed by GitHub
parent 0ebff2e68e
commit 24fb6306dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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