mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-06 04:42:28 +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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create zip with core binaries
|
# Add all executable files (excluding tests)
|
||||||
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
|
|
||||||
for f in *; do
|
for f in *; do
|
||||||
if [ -f "$f" ] && [ -x "$f" ] && [ "$f" != "tests" ]; then
|
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
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user