From ba50fa1f9725abc921fb329d5bfc852b5249724d Mon Sep 17 00:00:00 2001 From: Notexe Date: Wed, 3 Jan 2024 18:22:21 +1100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0732100..bcb2b48 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,8 +31,8 @@ jobs: - name: Generate projects run: | - mkdir cmake-build-release - cd cmake-build-release + mkdir cmake-build-RelWithDebInfo + cd cmake-build-RelWithDebInfo cmake -G Ninja ` -DCMAKE_BUILD_TYPE=RelWithDebInfo ` -DCMAKE_CXX_COMPILER=cl ` @@ -41,7 +41,7 @@ jobs: - name: Build run: | - cmake --build cmake-build-release --target ${{ matrix.target }} + cmake --build cmake-build-RelWithDebInfo --target ${{ matrix.target }} - name: Fetch hash lists run: | @@ -52,9 +52,9 @@ jobs: - name: Prepare build run: | 7z e latest-hashes.7z -o_rpkg - cp cmake-build-release/*.dll _rpkg - cp cmake-build-release/*.exe _rpkg - cp cmake-build-release/rpkg*.lib _rpkg + cp cmake-build-RelWithDebInfo/*.dll _rpkg + cp cmake-build-RelWithDebInfo/*.exe _rpkg + cp cmake-build-RelWithDebInfo/rpkg*.lib _rpkg cp thirdparty/quickentity-ffi/*.dll _rpkg cp thirdparty/assimp/*.dll _rpkg @@ -84,7 +84,7 @@ jobs: uses: actions/download-artifact@v3 with: name: rpkg-lib - path: cmake-build-release + path: cmake-build-RelWithDebInfo - name: Build run: |