diff options
author | Saturneric <[email protected]> | 2022-02-07 13:46:08 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-02-07 13:46:08 +0000 |
commit | 06892e6a01163131a58585899575bab8c5b73e6c (patch) | |
tree | deae27f6dd43cf4cdeb779f5905dd146aa11787d | |
parent | <fix>(src): Resolve discovered issues (diff) | |
download | GpgFrontend-06892e6a01163131a58585899575bab8c5b73e6c.tar.gz GpgFrontend-06892e6a01163131a58585899575bab8c5b73e6c.zip |
<fix>(ci): Specify the installation path in the build
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release-deb-package.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release-deb-package.yml b/.github/workflows/release-deb-package.yml index 21e3b8e7..02fb69bc 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 + 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 --build ${{github.workspace}}/build-deb-${{matrix.os}} --config {{$env.BUILD_TYPE}} -- -v cd ${{github.workspace}}/build-deb-${{matrix.os}} ninja package |