Skip to content

Instantly share code, notes, and snippets.

@DenTelezhkin
Created March 27, 2019 10:33
Show Gist options
  • Save DenTelezhkin/9fa7fe9d243c4c512a79b6d64ba5d85e to your computer and use it in GitHub Desktop.
Save DenTelezhkin/9fa7fe9d243c4c512a79b6d64ba5d85e to your computer and use it in GitHub Desktop.
Fastfile example for MLSDev blog article.
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