From 7e7aa37084f992fb1f692082c371a282ec683453 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Sun, 14 Apr 2024 10:02:40 -0700 Subject: [PATCH] Update build.yml --- .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 d67dbf0c9..588a72c2d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -174,20 +174,20 @@ jobs: cd build echo "[INFO] BUILD_FLAGS: ${{ env.BUILD_FLAGS }}" echo "[INFO] BUILD_MODE: ${{ env.BUILD_MODE }}" - cmake .. ${{ env.BUILD_FLAGS }} -DCMAKE_BUILD_TYPE=${{ env.BUILD_MODE }} -DVCPKG_INSTALL_OPTIONS="--clean-after-build" + cmake .. ${{ env.BUILD_FLAGS }} -DCMAKE_BUILD_TYPE=Release -DVCPKG_INSTALL_OPTIONS="--clean-after-build" - name: "Build Cemu" run: | cd build - cmake --build . --config ${{ env.BUILD_MODE }} + cmake --build . --config Release - name: Prepare artifact - if: ${{ inputs.deploymode == 'release' }} + #if: ${{ inputs.deploymode == 'release' }} run: Rename-Item bin/Cemu_release.exe Cemu.exe - name: Upload artifact uses: actions/upload-artifact@v3 - if: ${{ inputs.deploymode == 'release' }} + #if: ${{ inputs.deploymode == 'release' }} with: name: cemu-bin-windows-x64 path: ./bin/Cemu.exe