diff options
author | saturneric <[email protected]> | 2025-04-17 19:59:01 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-17 19:59:01 +0000 |
commit | 92be7f8da6076311b996a184c76781c07608cc9f (patch) | |
tree | 1088b3f5ad7c086e7f462287c14624e2202adbf0 /.github/workflows | |
parent | feat: check scd version (diff) | |
download | GpgFrontend-92be7f8da6076311b996a184c76781c07608cc9f.tar.gz GpgFrontend-92be7f8da6076311b996a184c76781c07608cc9f.zip |
fix: issues found on linux platform
Diffstat (limited to '.github/workflows')
-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 4fd609cc..8ee5ac1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -271,7 +271,7 @@ jobs: - name: Build GpgFrontend (Linux) # Build your GpgFrontend with the given configuration run: | - cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DDGPGFRONTEND_BUILD_TYPE_ONLY_APPLICATION=ON + cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_ONLY_APPLICATION=ON cmake --build ${{github.workspace}}/build --config {{$env.BUILD_TYPE}} -- -v if: runner.os == 'Linux' |