diff options
author | saturneric <[email protected]> | 2024-07-28 23:57:04 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-28 23:57:04 +0000 |
commit | e0510152d40dcc56b9b40415f3861498e6ae5db1 (patch) | |
tree | 517c187e346893acaed44b5c5f345bdffe0b0455 /.github | |
parent | fix: sudo command not found on msys2 (diff) | |
download | GpgFrontend-e0510152d40dcc56b9b40415f3861498e6ae5db1.tar.gz GpgFrontend-e0510152d40dcc56b9b40415f3861498e6ae5db1.zip |
fix: solve some known issues
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 2 |
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' |