From a9b34f39f98ddb838e6f90f42c09c0fdf271ae70 Mon Sep 17 00:00:00 2001 From: kakuty Date: Sat, 21 Sep 2024 21:58:13 -0400 Subject: [PATCH] Fix build.yml --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c688566..ba69080 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,10 +53,12 @@ jobs: -DCMAKE_INSTALL_PREFIX=${{ env.BASE_DIST_DIR }}/${{ matrix.configuration }} - name: Build the project - run: cmake --build ${{ env.BASE_BUILD_DIR }}/${{ matrix.configuration }} + run: cmake --build ${{ env.BASE_BUILD_DIR }}/${{ matrix.configuration }} --config ${{ matrix.configuration }} - name: Install binaries to distribution folder - run: cmake --install ${{ env.BASE_BUILD_DIR }}/${{ matrix.configuration }} --prefix ${{ env.BASE_DIST_DIR }}/${{ matrix.configuration }} + run: > + cmake --install ${{ env.BASE_BUILD_DIR }}/${{ matrix.configuration }} + --prefix ${{ env.BASE_DIST_DIR }}/${{ matrix.configuration }} --config ${{ matrix.configuration }} - name: Upload build artifacts uses: actions/upload-artifact@v4.3.3