Skip to content

Commit c3e9184

Browse files
committed
Hardcode export_options to work around Fastlane not computing them
See #676 and how https://buildkite.com/automattic/gravatar-sdk-ios/builds/2135/steps?sid=0195d364-32bb-47c4-a10c-0da0a39806ce failed
1 parent 68cb0bf commit c3e9184

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

fastlane/Fastfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,20 @@ platform :ios do
8989
scheme: scheme,
9090
configuration: 'Release',
9191
export_method: 'enterprise',
92+
# Somehow, switching to Xcode synchronized folders broke Fastlane's ability to generate the export_options automatically.
93+
# As such, we specify them manually for the time being.
94+
#
95+
# See:
96+
# - https://github.com/Automattic/Gravatar-SDK-iOS/pull/676
97+
# - https://buildkite.com/automattic/gravatar-sdk-ios/builds/2135/steps?sid=0195d364-32bb-47c4-a10c-0da0a39806ce
98+
export_options: {
99+
# FIXME: Compute the value
100+
provisioningProfiles: {
101+
"com.automattic.gravatar-sdk-demo-uikit.prototype-build": "match InHouse com.automattic.gravatar-sdk-demo-uikit.prototype-build"
102+
},
103+
method: 'enterprise',
104+
signingSytle: 'manual'
105+
},
92106
output_directory: ARTIFACTS_FOLDER,
93107
xcargs: [
94108
"CURRENT_PROJECT_VERSION=#{build_number}",

0 commit comments

Comments
 (0)