mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 00:46:46 +00:00
Update .github/workflows/release.yaml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -200,7 +200,16 @@ jobs:
|
|||||||
# Show contents
|
# Show contents
|
||||||
Write-Host "Successfully packaged $($files.Count) files"
|
Write-Host "Successfully packaged $($files.Count) files"
|
||||||
Write-Host "Package contents:"
|
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
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user