mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-19 12:42:26 +00:00
Update .github/workflows/release.yaml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
0ebff2e68e
commit
24fb6306dd
11
.github/workflows/release.yaml
vendored
11
.github/workflows/release.yaml
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user