Skip to content

Commit

Permalink
Updated fastfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
khoren93 committed Oct 13, 2018
1 parent eaf2e84 commit 696e86d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,29 @@ platform :ios do
build_app(scheme: "SwiftHub")
end

lane :increment_build do
increment_build_number
commit_version_bump
end

lane :increment_version_patch do
increment_version_number(
bump_type: "patch"
)
commit_version_bump
end

lane :increment_version_minor do
increment_version_number(
bump_type: "minor"
)
commit_version_bump
end

lane :increment_version_major do
increment_version_number(
bump_type: "major"
)
commit_version_bump
end
end

0 comments on commit 696e86d

Please sign in to comment.