From 469e9a4eb91f9cf3202a1cc28c0c6001061413fd Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sun, 9 Nov 2025 19:01:25 +0100 Subject: [PATCH] Enable notarization error logging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add print_log: true to notarize action to display detailed error messages when notarization fails in GitHub Actions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- fastlane/Fastfile | 1 + 1 file changed, 1 insertion(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index d6b661d5..ecbe0550 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -270,6 +270,7 @@ platform :mac do package: "fastlane/builds/#{version}-#{build}/macOS/#{APP_NAME}.app", bundle_id: "#{DEVELOPER_APP_IDENTIFIER}", api_key: api_key, + print_log: true ) end end