Skip to content

Commit f80c744

Browse files
committed
GH workflow release
1 parent 4f4a9a0 commit f80c744

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/build_release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,11 @@ jobs:
3232
run: mkdir -p out
3333

3434
- name: cmake
35-
run: cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
36-
working-directory: out
35+
run: cmake -S . -B out -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
3736
if: matrix.os != 'windows-latest'
3837

3938
- name: cmake (windows)
40-
run: cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
41-
working-directory: out
39+
run: cmake -S . -B out -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
4240
if: matrix.os == 'windows-latest'
4341

4442
- name: build

0 commit comments

Comments
 (0)