chore: update fastlane

This commit is contained in:
Salvatore Giordano
2021-09-06 12:53:07 +02:00
parent df36574da6
commit 08bb83d344
@@ -60,19 +60,19 @@ platform :ios do
lane :deploy_to_testflight do lane :deploy_to_testflight do
match_appstore match_appstore
settings_to_override = { # settings_to_override = {
:BUNDLE_IDENTIFIER => "io.getstream.flutter", # :BUNDLE_IDENTIFIER => "io.getstream.flutter",
:PROVISIONING_PROFILE_SPECIFIER => "match AppStore io.getstream.flutter 1630915713" # :PROVISIONING_PROFILE_SPECIFIER => "match AppStore io.getstream.flutter 1630915713"
} # }
gym( gym(
workspace: "./Runner.xcworkspace", workspace: "./Runner.xcworkspace",
scheme: "Runner", scheme: "Runner",
export_method: "app-store", export_method: "app-store",
export_options: "./fastlane/testflight_gym_export_options.plist", # export_options: "./fastlane/testflight_gym_export_options.plist",
silent: true, silent: true,
clean: true, clean: true,
xcargs: settings_to_override, # xcargs: settings_to_override,
include_symbols: true, include_symbols: true,
output_directory: "./dist", output_directory: "./dist",
) )