Created
July 1, 2019 05:05
-
-
Save Osein/d0fd6d51723999602e0d5a65aae9f8f5 to your computer and use it in GitHub Desktop.
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 "Increment build number and commit changes to github" | |
| lane :incrementBuildNumberAndCommit do | |
| ensure_git_status_clean | |
| build_number = increment_build_number | |
| commit_version_bump(message: "[skip ci] Version Bump to #{build_number}") | |
| push_to_git_remote() | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment