Files
stream-chat-flutter/example/ios/fastlane/Fastfile
T
2020-07-28 16:52:40 +02:00

52 lines
1.1 KiB
Ruby

fastlane_version "2.68.0"
default_platform :ios
before_all do
if is_ci
setup_ci()
end
end
desc "Installs all Certs and Profiles necessary for development and ad-hoc"
lane :match_me do
match(
type: "development",
app_identifier: [
"io.getstream.flutter",
"io.getstream.flutter.Notifications"
]
)
match(
type: "adhoc",
app_identifier: [
"io.getstream.flutter",
"io.getstream.flutter.Notifications"
]
)
end
platform :ios do
desc "Deploy build to Firebase"
lane :deploy_to_firebase do
match_me
gym(
workspace: "./Runner.xcworkspace",
scheme: "Runner",
export_method: "ad-hoc",
export_options: "./fastlane/beta_gym_export_options.plist",
silent: true,
clean: true,
include_symbols: true,
output_directory: "./dist"
)
message = changelog_from_git_commits(commits_count: 10)
firebase_app_distribution(
app: "1:674907137625:ios:cafb9fb076a453c4d7f348",
groups: "ios-stream-testers",
)
end
end