Last active
July 2, 2019 08:16
-
-
Save Osein/52676eb0e04b3a551a4708b8342a258a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc "Upload to fabric beta" | |
lane :callCrashlytics do |options| | |
crashlytics( | |
crashlytics_path: "./Pods/Crashlytics/", | |
api_token: "**********************", | |
build_secret: "*************************", | |
ipa_path: "./myapp.ipa", | |
groups:"teamios", | |
notes:readme = File.read("./release_notes.txt"), | |
notifications:options[:isNotificationsOpen] | |
) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment