GHA MacOS Only Sign/Notarize if self repo (#5437)

This commit is contained in:
Zach H
2025-01-10 16:46:05 -05:00
committed by GitHub
parent 59ca4397e2
commit 2b3c47148e
2 changed files with 42 additions and 31 deletions

View File

@@ -1,6 +1,8 @@
# This script re-signs all apps after CPack packages them. This is necessary because CPack modifies
# the library references used by Cockatrice to App relative paths, invalidating the code signature.
if(APPLE)
string(LENGTH $ENV{MACOS_CERTIFICATE_NAME} MACOS_CERTIFICATE_NAME_LEN)
if(APPLE AND MACOS_CERTIFICATE_NAME_LEN GREATER 0)
set(APPLICATIONS "cockatrice" "servatrice" "oracle" "dbconverter")
foreach(app_name IN LISTS APPLICATIONS)
set(FULL_APP_PATH "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${app_name}.app")