From fb0ee60cdb008e2a4bde8c3af837a4cee984648d Mon Sep 17 00:00:00 2001 From: Roy Shilkrot Date: Tue, 5 Nov 2024 13:18:59 -0500 Subject: [PATCH] Add build configuration option to installation step in GitHub Actions workflow --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0edc6a5..d4dc064 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -36,4 +36,4 @@ jobs: run: cmake --build build --config ${{ matrix.build_type }} - name: Install - run: cmake --install build --prefix ${{ github.workspace }}/dist \ No newline at end of file + run: cmake --install build --prefix ${{ github.workspace }}/dist --config ${{ matrix.build_type }} \ No newline at end of file