Skip to content

Commit 9619aa1

Browse files
.github/workflows/cmake-multi-platform.yml: build: append --target install
1 parent 1cb41bd commit 9619aa1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ jobs:
8787
- name: Build
8888
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
8989
id: build
90-
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
90+
run: >
91+
cmake --build ${{ steps.strings.outputs.build-output-dir }}
92+
--config ${{ matrix.build_type }}
93+
--target install
9194
9295
- name: Test
9396
id: test

0 commit comments

Comments
 (0)