From 6170c04d4d85ed9af5e66345bb3b9d35aeb766df Mon Sep 17 00:00:00 2001 From: Karaulov Date: Sat, 10 Dec 2022 08:48:27 +0300 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a3eb39a..e5efed67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,12 +42,6 @@ jobs: cmake .. -DCMAKE_BUILD_TYPE=RELEASE make - - name: Upload linux artifacts - uses: actions/upload-artifact@v3 - with: - name: bspguy-linux - path: build/bspguy - - name: Publish nightly binaries for linux uses: softprops/action-gh-release@v1 with: @@ -80,14 +74,19 @@ jobs: run: | msbuild ${{ env.solution }} -m -t:rebuild -verbosity:diag -property:Configuration=Release - - name: Upload windows artifacts - uses: actions/upload-artifact@v3 - with: - name: Windows - path: ./vs-project/Release/bspguy.exe - - name: Publish nightly binaries for windows uses: softprops/action-gh-release@v1 with: tag_name: ${{ needs.get_time_build.outputs.release_tag }} files: ./vs-project/Release/bspguy.exe + + - name: Build app for debug + run: | + msbuild ${{ env.solution }} -m -t:rebuild -verbosity:diag -property:Configuration=DebugGithub + + - name: Publish nightly debug binaries for windows + uses: softprops/action-gh-release@v1 + with: + tag_name: ${{ needs.get_time_build.outputs.release_tag }} + files: ./vs-project/Release/bspguy_debug.exe + \ No newline at end of file