try to use fastlane

This commit is contained in:
Bob Sun 2017-02-16 18:04:11 +08:00
parent 0087bbe3c7
commit 50f87e349c
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View file

@ -62,6 +62,7 @@ Carthage/Build
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots

10
Fastfile Normal file
View file

@ -0,0 +1,10 @@
lane :beta do
ensure_git_status_clean
increment_build_number(xcodeproj: "pass.xcodeproj")
commit_version_bump(xcodeproj: "pass.xcodeproj")
add_git_tag
push_to_git_remote
gym(scheme: "pass",
workspace: "pass.xcworkspace",
include_bitcode: true)
end