From dd6bead770097fe5ed40e94856312879b5568049 Mon Sep 17 00:00:00 2001 From: FibreFoX Date: Sun, 25 Aug 2024 21:20:40 +0200 Subject: [PATCH] build production version --- .github/workflows/build-with-github.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-with-github.yml b/.github/workflows/build-with-github.yml index 006aad9..cb2e204 100644 --- a/.github/workflows/build-with-github.yml +++ b/.github/workflows/build-with-github.yml @@ -31,10 +31,10 @@ jobs: - name: build binaries if: ${{ matrix.os != 'macos-latest' }} run: | - scons target=template_debug arch=x86_32 debug_symbols=yes - scons target=template_release arch=x86_32 debug_symbols=yes - scons target=template_debug arch=x86_64 debug_symbols=yes - scons target=template_release arch=x86_64 debug_symbols=yes + scons target=template_debug arch=x86_32 debug_symbols=yes production=yes + scons target=template_release arch=x86_32 debug_symbols=yes production=yes + scons target=template_debug arch=x86_64 debug_symbols=yes production=yes + scons target=template_release arch=x86_64 debug_symbols=yes production=yes - name: build MacOS binaries if: ${{ matrix.os == 'macos-latest' }} run: |