aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-28 23:57:04 +0000
committersaturneric <[email protected]>2024-07-28 23:57:04 +0000
commite0510152d40dcc56b9b40415f3861498e6ae5db1 (patch)
tree517c187e346893acaed44b5c5f345bdffe0b0455 /.github
parentfix: sudo command not found on msys2 (diff)
downloadGpgFrontend-e0510152d40dcc56b9b40415f3861498e6ae5db1.tar.gz
GpgFrontend-e0510152d40dcc56b9b40415f3861498e6ae5db1.zip
fix: solve some known issues
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index f6752c35..5de76061 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -185,7 +185,7 @@ jobs:
run: |
cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://')
mkdir build-full-sdk && cd build-full-sdk
- cmake -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_FULL_SDK=ON ..
+ cmake -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_FULL_SDK=ON -DCMAKE_INSTALL_PREFIX=$MSYSTEM_PREFIX ..
cmake --build . --config ${{env.BUILD_TYPE}} -- -j 4
cmake --install . --config {{$env.BUILD_TYPE}}
if: matrix.os == 'windows-2019'