From 630a5b6dc5f061c3b14d81e5543b5b802268194f Mon Sep 17 00:00:00 2001 From: ak5k <42914711+ak5k@users.noreply.github.com> Date: Wed, 3 Jan 2024 08:31:50 +0200 Subject: [PATCH] Fix cmake command in workflow file --- .github/workflows/cmake-multi-platform.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 4d5909f..bca6703 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -54,9 +54,9 @@ jobs: # Note the current configuration is for a basic C++ project. You'll need to update this for your specific needs. shell: bash run: | - cmake -B ${{ github.workspace }} ${{matrix.ninja}} - -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} - -S ${{ github.workspace }} + cmake -B ${{ github.workspace }} ${{matrix.ninja}} \ + -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ + -S ${{ github.workspace }} \ -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }}} - name: Build