mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-27 04:02:37 +00:00
Package shared libs from build tree
Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
parent
6d519efdef
commit
246138ac51
11
.github/workflows/release.yaml
vendored
11
.github/workflows/release.yaml
vendored
@ -75,12 +75,11 @@ jobs:
|
||||
fi
|
||||
done
|
||||
|
||||
# Add shared libraries needed for runtime
|
||||
for f in *.so*; do
|
||||
if [ -f "$f" ]; then
|
||||
zip -uj eqemu-server-linux-x64.zip "$f"
|
||||
fi
|
||||
done
|
||||
# Add shared libraries needed for runtime (from build/bin and build/libs)
|
||||
find .. -type f -name "*.so*" \( -path "../bin/*" -o -path "../libs/*" \) -print0 | \
|
||||
while IFS= read -r -d '' lib; do
|
||||
zip -uj eqemu-server-linux-x64.zip "$lib"
|
||||
done
|
||||
|
||||
# Verify zip file was created and contains files
|
||||
if [ ! -f eqemu-server-linux-x64.zip ]; then
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user