mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-19 12:42:26 +00:00
Merge pull request #18 from Valorith/copilot/sub-pr-17
Fix duplicate binary packaging in Linux release workflow
This commit is contained in:
commit
dbace7a7f6
9
.github/workflows/release.yaml
vendored
9
.github/workflows/release.yaml
vendored
@ -61,15 +61,10 @@ jobs:
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Create zip with core binaries
|
||||
zip -j eqemu-server-linux-x64.zip \
|
||||
world zone ucs queryserv eqlaunch shared_memory \
|
||||
loginserver import_client_files export_client_files
|
||||
|
||||
# Include any additional binaries that exist
|
||||
# Add all executable files (excluding tests)
|
||||
for f in *; do
|
||||
if [ -f "$f" ] && [ -x "$f" ] && [ "$f" != "tests" ]; then
|
||||
zip -u eqemu-server-linux-x64.zip "$f"
|
||||
zip -uj eqemu-server-linux-x64.zip "$f"
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user