From 50f87e349c6ef908640c8a087e3d2fd4fc240fe5 Mon Sep 17 00:00:00 2001 From: Bob Sun Date: Thu, 16 Feb 2017 18:04:11 +0800 Subject: [PATCH] try to use fastlane --- .gitignore | 1 + Fastfile | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 Fastfile diff --git a/.gitignore b/.gitignore index acd770b..ef5f844 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/Fastfile b/Fastfile new file mode 100644 index 0000000..6085f90 --- /dev/null +++ b/Fastfile @@ -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