-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86e2c1f
commit b3fa191
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ platform :ios do | |
build_app(scheme: "BeeSwift") | ||
|
||
# Commit the version bump | ||
commit_version_bump(xcodeproj: "BeeSwift.xcodeproj") | ||
commit_version_bump(message: "Bump build") | ||
|
||
# Add a git tag for this build. This will automatically | ||
# use an appropriate git tag name | ||
|
@@ -46,4 +46,20 @@ platform :ios do | |
|
||
upload_to_testflight(username: "[email protected]") | ||
end | ||
|
||
lane :release do | ||
ensure_git_status_clean | ||
|
||
increment_build_number(xcodeproj: "BeeSwift.xcodeproj") | ||
|
||
build_app(scheme: "BeeSwift") | ||
|
||
commit_version_bump(message: "Bump build") | ||
|
||
add_git_tag | ||
|
||
push_to_git_remote | ||
|
||
upload_to_app_store | ||
end | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,11 @@ fastlane ios build | |
fastlane ios beta | ||
``` | ||
|
||
### ios release | ||
``` | ||
fastlane ios release | ||
``` | ||
|
||
|
||
---- | ||
|
||
|