mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-04 15:12:26 +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
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Add shared libraries needed for runtime
|
# Add shared libraries needed for runtime (from build/bin and build/libs)
|
||||||
for f in *.so*; do
|
find .. -type f -name "*.so*" \( -path "../bin/*" -o -path "../libs/*" \) -print0 | \
|
||||||
if [ -f "$f" ]; then
|
while IFS= read -r -d '' lib; do
|
||||||
zip -uj eqemu-server-linux-x64.zip "$f"
|
zip -uj eqemu-server-linux-x64.zip "$lib"
|
||||||
fi
|
done
|
||||||
done
|
|
||||||
|
|
||||||
# Verify zip file was created and contains files
|
# Verify zip file was created and contains files
|
||||||
if [ ! -f eqemu-server-linux-x64.zip ]; then
|
if [ ! -f eqemu-server-linux-x64.zip ]; then
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user