From 54d36bdb333a2fc0111be193cf7ef4c4a44d392d Mon Sep 17 00:00:00 2001 From: lschmid Date: Fri, 14 Jun 2024 23:16:55 -0400 Subject: [PATCH] fix build path --- .github/workflows/cmake_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake_build.yml b/.github/workflows/cmake_build.yml index 8bec736..2f745df 100644 --- a/.github/workflows/cmake_build.yml +++ b/.github/workflows/cmake_build.yml @@ -16,11 +16,11 @@ jobs: steps: - uses: actions/checkout@v4 - + - name: Configure CMake shell: bash run: | - cd ${{github.workspace}}/spatial_hash + cd ${{github.workspace}} cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build