File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -385,10 +385,13 @@ jobs:
385385 run : |
386386 # create variables
387387 CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
388- PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision
388+ PP_PATH=$RUNNER_TEMP/build_pp.provisionprofile
389389 KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
390390
391391 # import certificate and provisioning profile from secrets
392+ echo "certificate:"
393+ echo "$BUILD_CERTIFICATE_BASE64"
394+ echo ""
392395 echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
393396 echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH
394397
Original file line number Diff line number Diff line change 107107 <release version =" 0.4.4" urgency =" medium" type =" development" >
108108 <description >
109109 <ul >
110+ <li >macOS package signing is now done with a valid Apple ID</li >
110111 <li >macOS package is now Apple Silicon native</li >
111112 <li >Add CoreText font fallback implementation for macOS (#1533)</li >
112113 <li >Add Ubuntu-24.04 in github actions (#1460)</li >
Original file line number Diff line number Diff line change @@ -445,6 +445,7 @@ elseif(APPLE)
445445
446446 # Install application icon
447447 install (FILES "res/images/contour-logo.icns" DESTINATION "${INSTALL_CMAKE_DIR} " RENAME "contour.icns" )
448+ install (FILES "res/entitlements.plist" DESTINATION "${App_Contents} " )
448449 install (DIRECTORY "${terminfo_basedir} " DESTINATION "${INSTALL_CMAKE_DIR} " )
449450 install (DIRECTORY "shell-integration" DESTINATION "${INSTALL_CMAKE_DIR} " )
450451
Original file line number Diff line number Diff line change 1+ <!-- ?xml version="1.0" encoding="UTF-8"?-->
2+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+ <plist version =" 1.0" >
4+ <dict >
5+ <key >com.apple.application-identifier </key >
6+ <string >org.contourterminal.Terminal </string >
7+ <key >com.apple.developer.team-identifier </key >
8+ <string >6T525MU9UR </string >
9+ </dict >
10+ </plist >
You can’t perform that action at this time.
0 commit comments