Skip to content

Commit 070946a

Browse files
committed
Fix CMAKE_INSTALL_PREFIX for deploy
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
1 parent a455112 commit 070946a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
run: |
3232
mkdir -p build
3333
cd build
34-
cmake -DBUILD_SHARED_LIBS=Off -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
34+
cmake -DBUILD_SHARED_LIBS=Off -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX="/usr" ..
3535
make -j$(nproc)
3636
cpack -G DEB
37-
cmake -DBUILD_SHARED_LIBS=On -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
37+
cmake -DBUILD_SHARED_LIBS=On -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX="/usr" ..
3838
make -j$(nproc)
3939
cpack -G DEB
4040
- name: push deb packages to packagecloud.io

0 commit comments

Comments
 (0)