Skip to content

Instantly share code, notes, and snippets.

@victory316
Last active October 16, 2023 13:02
Show Gist options
  • Save victory316/518ab88d1c378c7bea366dce2bd8a0ce to your computer and use it in GitHub Desktop.
Save victory316/518ab88d1c378c7bea366dce2bd8a0ce to your computer and use it in GitHub Desktop.
Firebase App distribution with fastlane
desc "Submit a new Release Build to Firebase App Distribution"
lane :publishDevDebug do
devDebugBuild
firebase_app_distribution(
service_credentials_file: "firebase_credentials.json",
app: ENV["APP_ID"],
groups: "QA",
release_notes: "Test version of devDebug build."
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment