From a6fc1da1ae5ff1492593fa66df54d3c1666a58ee Mon Sep 17 00:00:00 2001 From: Joseph Hale Date: Sat, 26 Jul 2025 09:06:44 -0700 Subject: [PATCH] build: Add another recommendation for handling codesigning error This is what ultimately fixed my codesigning issue today, so noting it down for future benefit. --- fastlane/Fastfile | 1 + 1 file changed, 1 insertion(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index c524746..0a341f5 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -58,6 +58,7 @@ platform :ios do " - [ ] `npm run pods` - Install native dependencies", " - [ ] `fastlane ios certificates` - Install certificates/provisioning profiles", " - [ ] `security unlock-keychain` - Allow pulling private signing keys from the keychain (e.g. in SSH sessions)", + " - [ ] Try running this command directly on the Mac (not over SSH) to handle GUI prompts" ] raise exception end -- 2.51.2