This file contains hidden or 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
# Example of only doing something in or out of ci. | |
#=> fastlane my_process | |
#=> JENKINS_URL=foo fastlane my_process | |
before_all do | |
ci_stuff | |
end | |
lane :my_process do | |
UI.message "Only do this when in CI" if Helper.is_ci? |
This file contains hidden or 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
# => fastlane my_process | |
lane :my_process do | |
wave_from "My process" | |
end | |
# Plain old ruby function for all the complexity | |
def wave_from(phrase) | |
UI.message "👋 from #{phrase}" | |
UI.important "Yellow Things" |
This file contains hidden or 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
# Welcome to Fastlane! | |
# Here are a few examples of the most basic building blocks | |
# NOTICE: Although syntactically correct, this cannot run | |
# without further configuration and -- of course -- | |
# an iOS project! | |
# To discover what actions are avaialble: | |
# => fastlane actions |