Skip to content

Instantly share code, notes, and snippets.

@kajornsakp
Last active September 26, 2019 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kajornsakp/85c99f313ab12f312423ee3dd9a541ed to your computer and use it in GitHub Desktop.
Save kajornsakp/85c99f313ab12f312423ee3dd9a541ed to your computer and use it in GitHub Desktop.
default_platform(:ios)
platform :ios do
desc "Distribute iOS App to Firebase App Distribution"
lane :firebase_distribute do
enable_automatic_code_signing
build_ios_app(
scheme: "firebaseDistribution",
workspace: "firebaseDistribution.xcworkspace",
export_xcargs: "-allowProvisioningUpdates")
firebase_app_distribution(
app: "1:453826819908:ios:cda659fb15ab9128",
groups: "QA",
release_notes: "Update v1.0.2 via Fastlane!!",
firebase_cli_path: "/usr/local/bin/firebase"
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment