diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 66de1b8..a90e68f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -45,11 +45,12 @@ message: "Increment version code to #{lane_context[SharedValues::VERSION_CODE]} new tag", ) add_git_tag( - tag: "#{lane_context[SharedValues::VERSION_CODE]}-{ENV['VERSION']}", + tag: "#{lane_context[SharedValues::VERSION_CODE]}-#{ENV['VERSION']}", message: "Create new tag for version #{lane_context[SharedValues::VERSION_CODE]} (#{ENV['VERSION']})", ) - push_to_git_remote - push_git_tags + push_to_git_remote( + remote_branch: "master", + ) end desc "Build and deploy the apk for Alpha testing in Google Play store"