diff options
author | Saturneric <[email protected]> | 2022-03-19 08:14:28 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-03-19 08:14:28 +0000 |
commit | 084d44ba525f1dd72cd1eafcef87f749108a1e9b (patch) | |
tree | 43e396c70432eeaf64345f08340f6409022143a8 | |
parent | <fix>(doc): Fix code for multilingual support (diff) | |
download | GpgFrontend-084d44ba525f1dd72cd1eafcef87f749108a1e9b.tar.gz GpgFrontend-084d44ba525f1dd72cd1eafcef87f749108a1e9b.zip |
<fix>(doc, ci): Adjust deb package generation settings.
-rw-r--r-- | .github/workflows/release-deb-package.yml | 2 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-deb-package.yml b/.github/workflows/release-deb-package.yml index 02fb69bc..ea6869f6 100644 --- a/.github/workflows/release-deb-package.yml +++ b/.github/workflows/release-deb-package.yml @@ -46,7 +46,7 @@ jobs: - name: Build & Package GpgFrontend (Linux DEB Package) # Build your program with the given configuration run: | - cmake -B ${{github.workspace}}/build-deb-${{matrix.os}} -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGENERATE_LINUX_INSTALL_SOFTWARE=ON -DCMAKE_INSTALL_PREFIX:PATH=${{github.workspace}} + cmake -B ${{github.workspace}}/build-deb-${{matrix.os}} -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_GENERATE_LINUX_INSTALL_SOFTWARE=ON -DCMAKE_INSTALL_PREFIX:PATH=${{github.workspace}} cmake --build ${{github.workspace}}/build-deb-${{matrix.os}} --config {{$env.BUILD_TYPE}} -- -v cd ${{github.workspace}}/build-deb-${{matrix.os}} ninja package @@ -163,7 +163,7 @@ Build the code and make the deb package. ```shell $ cd GpgFrontend $ mkdir build && cd build -$ cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" -DGENERATE_LINUX_INSTALL_SOFTWARE=ON .. +$ cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" -DGPGFRONTEND_GENERATE_LINUX_INSTALL_SOFTWARE=ON .. $ ninja $ ninja package ``` |