From 14127c26f5fbded1473578e23aa1cc966e47b543 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 24 Apr 2025 23:41:26 +0300 Subject: [PATCH] scripts: gha: don't put dedicated binary in full client tarballs --- scripts/gha/build_linux.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/gha/build_linux.sh b/scripts/gha/build_linux.sh index d0aa9874..3cf64af2 100755 --- a/scripts/gha/build_linux.sh +++ b/scripts/gha/build_linux.sh @@ -106,7 +106,8 @@ build_dedicated_tarball() cd "$BUILDDIR" || die # FIXME: make an option for Waf to only install dedicated mkdir -p "$DSDIR" - cp -v "$APPDIR"/xash "$APPDIR"/filesystem_stdio.so "$DSDIR" + cp -v "$APPDIR"/filesystem_stdio.so "$DSDIR" + mv -v "$APPDIR"/xash "$DSDIR" tar -czvf "artifacts/$DSTARGZ" "$DSDIR" }