Windows: Add extra editor build with steamapi=yes for stable releases

This commit is contained in:
Rémi Verschelde
2024-08-15 00:08:41 +02:00
parent 834f6223d8
commit 629090d76e
2 changed files with 17 additions and 1 deletions

View File

@@ -52,6 +52,17 @@ if [ "${CLASSICAL}" == "1" ]; then
mkdir -p /root/out/arm64/templates
cp -rvp bin/* /root/out/arm64/templates
rm -rf bin
if [ "${STEAM}" == "1" ]; then
build_name=${BUILD_NAME}
export BUILD_NAME="steam"
$SCONS platform=windows arch=x86_64 $OPTIONS target=editor steamapi=yes
$SCONS platform=windows arch=x86_32 $OPTIONS target=editor steamapi=yes
mkdir -p /root/out/steam
cp -rvp bin/* /root/out/steam
rm -rf bin
export BUILD_NAME=${build_name}
fi
fi
# Mono