Created
May 11, 2022 05:58
-
-
Save patissier-boulanger/7cb2ea8b0c46d4e0cccdfdaf3ca1a1a4 to your computer and use it in GitHub Desktop.
fastlane versioning lanes
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
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