From 56266f6f217343bac9b12576995c4ad620b31420 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 25 Jan 2026 00:30:08 +0000 Subject: [PATCH] Limit shared lib search to build libs Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com> --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 632525778..d2879d4e2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -78,7 +78,7 @@ jobs: # Add shared libraries needed for runtime (from build/bin and build/libs) if [ -d ../libs ]; then - find . ../libs -type f \( -name "*.so" -o -name "*.so.[0-9]*" \) -print0 | \ + find ../libs -type f \( -name "*.so" -o -name "*.so.[0-9]*" \) -print0 | \ while IFS= read -r -d '' lib; do $ZIP_CMD "$lib" done