From 2c885f6c1b8be51e3df585285f5598fb62a05e9f Mon Sep 17 00:00:00 2001 From: Zopolis4 Date: Wed, 7 Sep 2022 17:17:43 +1000 Subject: [PATCH] Fix CI build modes --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 29af2648..b81628cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,15 +38,15 @@ jobs: - name: Setup release mode parameters (for deploy) if: ${{ inputs.deploymode == 'release' }} run: | - echo "BUILD_MODE=release" >> $GITHUB_ENV + echo "BUILD_MODE=Release" >> $GITHUB_ENV echo "BUILD_FLAGS=-DPUBLIC_RELEASE=ON" >> $GITHUB_ENV - echo "Build mode is release" + echo "Build mode is Release" - name: Setup debug mode parameters (for continous build) if: ${{ inputs.deploymode != 'release' }} run: | - echo "BUILD_MODE=debug" >> $GITHUB_ENV + echo "BUILD_MODE=Debug" >> $GITHUB_ENV echo "BUILD_FLAGS=" >> $GITHUB_ENV - echo "Build mode is debug" + echo "Build mode is Debug" - name: Setup version for experimental if: ${{ inputs.experimentalversion != '' }}