Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patissier-boulanger/7cb2ea8b0c46d4e0cccdfdaf3ca1a1a4 to your computer and use it in GitHub Desktop.
Save patissier-boulanger/7cb2ea8b0c46d4e0cccdfdaf3ca1a1a4 to your computer and use it in GitHub Desktop.
fastlane versioning lanes
desc "Deploy Application"
lane :patch do
match()
increment_build_number()
increment_version_number(bump_type: "patch")
gym()
pilot()
end
desc "Deploy publ minor"
lane :minor do
match()
increment_build_number()
increment_version_number(bump_type: "minor")
gym()
pilot()
end
desc "Deploy publ major"
lane :major do
match()
increment_build_number()
increment_version_number(bump_type: "major")
gym()
pilot()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment