scripts: gha: don't put dedicated binary in full client tarballs

This commit is contained in:
Alibek Omarov
2025-04-24 23:41:26 +03:00
parent 291f24a611
commit 14127c26f5

View File

@@ -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"
}