diff options
author | saturneric <[email protected]> | 2024-04-28 18:42:14 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-04-28 18:42:14 +0000 |
commit | e820be6011f6267035eb7694f4f1c28d36577ab2 (patch) | |
tree | 4a718c57bccf649c357bb47ab9fe75fdacdaebec | |
parent | fix: run macdeployqt and codesign out of cmake build process (diff) | |
download | GpgFrontend-e820be6011f6267035eb7694f4f1c28d36577ab2.tar.gz GpgFrontend-e820be6011f6267035eb7694f4f1c28d36577ab2.zip |
fix: correct a mistake in ci config file
-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 db3b05ec..3606f3d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -206,7 +206,7 @@ jobs: run: | cmake -E copy_directory ${{github.workspace}}/build-mods/artifacts/mods ${{github.workspace}}/build/package/GpgFrontend.app/Contents/PlugIns/mods macdeployqt ${{github.workspace}}/build/package/GpgFrontend.app -verbose=2 -appstore-compliant -always-overwrite - codesign -s "${{secrets.GPGFRONTEND_XOCDE_CODE_SIGN_IDENTITY}}" -f --deep GpgFrontend.app + codesign -s "${{secrets.GPGFRONTEND_XOCDE_CODE_SIGN_IDENTITY}}" -f --deep ${{github.workspace}}/build/package/GpgFrontend.app if: matrix.os == 'macos-11' || matrix.os == 'macos-12' - name: Package & Sign App Bundle (macOS) |