From 3c99a826193269a9e809a6674340262290adcfd9 Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Thu, 21 Jul 2022 22:55:47 +0200 Subject: [PATCH] gh actions: configure correct path for packaging --- .github/workflows/push.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index bee9cdb13..77c5924cd 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -24,7 +24,13 @@ jobs: - name: configure project # We reuse the build binary only for the releases. # We set tweak version to off, because it is wrong, as git tag will happen after this step. Releases don't have a tweak, so this is ok. - run: cmake -DSET_TWEAK=Off -DBUILD_TESTS=On . + run: > + cmake + -DSET_TWEAK=Off + -DBUILD_TESTS=On + -DCMAKE_INSTALL_PREFIX="/usr" + -DCMAKE_INSTALL_SYSCONFDIR="/etc" + . - name: build project run: cmake --build . -j$(nproc) --target package