From fc64dc7400089d6cd782c0e193b1bd3903b3ac29 Mon Sep 17 00:00:00 2001 From: mplorentz Date: Fri, 18 Oct 2024 09:28:12 -0400 Subject: [PATCH 1/2] Increase build settings timeout during fastlane deployments --- fastlane/Fastfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 8a2e6df90..53de02070 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -15,6 +15,10 @@ default_platform(:ios) +# Work around +# https://github.com/fastlane/fastlane/issues/20919 +ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "60" + platform :ios do asc_key_content = ENV["APP_STORE_CONNECT_API_KEY_CONTENT"] asc_issuer_id = ENV["APP_STORE_CONNECT_ISSUER_ID"] From 16773189c6e5ead8a197c002cdc1f64a8f9343fb Mon Sep 17 00:00:00 2001 From: mplorentz Date: Fri, 18 Oct 2024 09:30:44 -0400 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index df2403eec..fea62f992 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Internal Changes - Migrate ObservableObject to @Observable where possible [#1458](https://github.com/planetary-social/nos/issues/1458) - Added the Create Account onboarding screen. Currently behind the “New Onboarding Flow” feature flag. [#1594](https://github.com/planetary-social/nos/issues/1594) +- Increase build settings timeout in fastlane. [#1662](https://github.com/planetary-social/nos/pull/1662) ## [0.2.2] - 2024-10-11Z