Skip to content

Commit

Permalink
change tag prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill-Kulikov committed Jul 29, 2022
1 parent b3903a6 commit 4b29fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ platform :android do
before_all do |lane, options|
ENV["APP_FLAVOR"] = options[:flavor]
ENV["PROJECT_DIR"] = "./"
tag_prefix = 'v*'
puts "Flavor environment #{options[:flavor]}"
end
def on_error(exception)
Expand Down Expand Up @@ -43,6 +42,7 @@ platform :android do

semver = ENV["SEMVER"]
if semver
tag_prefix = 'v*'
isReleasable = analyze_commits(match: tag_prefix)
tag = "#{lane_context[SharedValues::RELEASE_NEXT_VERSION]}-#{ENV["FLAVOR_TYPE"]}"
puts "RELEASE_NEXT_VERSION #{lane_context[SharedValues::RELEASE_NEXT_VERSION]}-#{ENV["FLAVOR_TYPE"]}"
Expand Down

0 comments on commit 4b29fc6

Please sign in to comment.