Skip to content

Commit daf9e5a

Browse files
Update cmake-single-platform.yml
1 parent d69808e commit daf9e5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cmake-single-platform.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
- name: Configure CMake
2828
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
2929
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
30-
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
30+
run: cmake -B ${{github.workspace}}/out/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
3131

3232
- name: Build
3333
# Build your program with the given configuration
34-
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
34+
run: cmake --build ${{github.workspace}}/out/build --config ${{env.BUILD_TYPE}}
3535

3636
- name: Upload build artifacts
3737
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)