Skip to content

Commit

Permalink
Fix install path
Browse files Browse the repository at this point in the history
Shouldn't have changed that one
  • Loading branch information
Daft-Freak committed Aug 5, 2023
1 parent c5e09c4 commit 9a15c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/main/build
run: ${{matrix.cmake-prefix}} cmake $GITHUB_WORKSPACE/main -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCPACK_PACKAGE_FILE_NAME=${{env.RELEASE_FILE}} -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/main/install ${{matrix.cmake-args}}
run: ${{matrix.cmake-prefix}} cmake $GITHUB_WORKSPACE/main -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCPACK_PACKAGE_FILE_NAME=${{env.RELEASE_FILE}} -DCMAKE_INSTALL_PREFIX=`pwd`/install ${{matrix.cmake-args}}

# And then run the build itself
- name: Build
Expand Down

0 comments on commit 9a15c33

Please sign in to comment.