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