From 2190593c787d77a7ae84049b586cf78794798fe8 Mon Sep 17 00:00:00 2001 From: Anonymous275 <36374260+Anonymous-275@users.noreply.github.com> Date: Wed, 22 Sep 2021 17:45:15 +0300 Subject: [PATCH] Update cmake-windows.yml --- .github/workflows/cmake-windows.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml index adbeb4b..52e8a17 100644 --- a/.github/workflows/cmake-windows.yml +++ b/.github/workflows/cmake-windows.yml @@ -3,7 +3,7 @@ name: CMake Windows Build on: [push] env: - BUILD_TYPE: Release + BUILD_TYPE: RelWithDebInfo jobs: windows-build: @@ -42,6 +42,12 @@ jobs: uses: actions/upload-artifact@v2 with: name: BeamMP-Server.exe - path: ${{github.workspace}}/build-windows/Release/BeamMP-Server.exe + path: ${{github.workspace}}/build-windows/RelWithDebInfo/BeamMP-Server.exe + + - name: Archive artifacts + uses: actions/upload-artifact@v2 + with: + name: BeamMP-Server.pdb + path: ${{github.workspace}}/build-windows/RelWithDebInfo/BeamMP-Server.pdb