Update .github/workflows/release.yaml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Vayle 2026-01-24 13:58:59 -05:00 committed by GitHub
parent f1303c5640
commit 5caa4a78dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,12 +46,11 @@ jobs:
cd build/bin
zip -j eqemu-server-linux-x64.zip \
world zone ucs queryserv eqlaunch shared_memory \
loginserver import_client_files export_client_files \
2>/dev/null || true
loginserver import_client_files export_client_files
# Include any additional binaries that exist
for f in *; do
if [ -f "$f" ] && [ -x "$f" ] && [ "$f" != "tests" ]; then
zip -u eqemu-server-linux-x64.zip "$f" 2>/dev/null || true
zip -u eqemu-server-linux-x64.zip "$f"
fi
done
ls -la eqemu-server-linux-x64.zip