From 1bb069f693291eea2fd0d273cc6a5f055316e051 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 7 May 2022 16:57:30 +0200 Subject: [PATCH] Some fixes --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fee95af..721ae6b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,11 +40,11 @@ jobs: - name: Set up problem matching uses: ammaraskar/msvc-problem-matcher@master - - name: Run CMake - uses: lukka/run-cmake@v10 - with: - configurePreset: '${{matrix.configuration}}' - buildPreset: '${{matrix.configuration}}' + - name: Configure ${{matrix.configuration}} + run: cmake --preset=${{matrix.configuration}} + + - name: Build ${{matrix.configuration}} + run: cmake --build --preset=${{matrix.configuration}} - name: Upload ${{matrix.configuration}} binaries uses: actions/upload-artifact@v2