Created
March 27, 2019 10:33
-
-
Save DenTelezhkin/9fa7fe9d243c4c512a79b6d64ba5d85e to your computer and use it in GitHub Desktop.
Fastfile example for MLSDev blog article.
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
before_all do | |
cocoapods | |
scan | |
end | |
# Increment build number to current date | |
lane :set_build_number do | |
increment_build_number( | |
build_number: Time.new.strftime("%Y.%m.%d.%H%M") | |
) | |
end | |
lane :beta do |beta| | |
match | |
set_build_number | |
configuration = beta[:configuration] || "Release" | |
gym(configuration: configuration) | |
pilot(skip_submission: true) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment