diff options
author | saturneric <[email protected]> | 2024-07-28 23:27:40 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-28 23:27:40 +0000 |
commit | 82e7ec05ed8ac450c6e6a25e6487ee8ed82a8e06 (patch) | |
tree | 94e365d142141d42edd9c423d077dc0d335f42d0 | |
parent | fix: try to solve some discovered issues when running linux app image (diff) | |
download | GpgFrontend-82e7ec05ed8ac450c6e6a25e6487ee8ed82a8e06.tar.gz GpgFrontend-82e7ec05ed8ac450c6e6a25e6487ee8ed82a8e06.zip |
fix: sudo command not found on msys2
Diffstat (limited to '')
-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 5ed3ffd0..f6752c35 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -187,7 +187,7 @@ jobs: mkdir build-full-sdk && cd build-full-sdk cmake -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_FULL_SDK=ON .. cmake --build . --config ${{env.BUILD_TYPE}} -- -j 4 - sudo cmake --install . --config {{$env.BUILD_TYPE}} + cmake --install . --config {{$env.BUILD_TYPE}} if: matrix.os == 'windows-2019' - name: Build Integrated Modules |