Skip to content

Commit 659d5f6

Browse files
authored
chore: Remove v from release tags (#2740)
1 parent c393d78 commit 659d5f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ platform :ios do
9898
desc "Tag in git and push to GitHub"
9999
private_lane :add_tag do |options|
100100
next_version = options[:version]
101-
next_tag = "v#{next_version}"
101+
next_tag = "#{next_version}"
102102

103103
add_git_tag(tag: next_tag)
104104
push_git_tags(tag: next_tag)
@@ -134,7 +134,7 @@ platform :ios do
134134
private_lane :post_release do |options|
135135
version = options[:version].to_s
136136
changelog = options[:changelog]
137-
tag = "v#{version}"
137+
tag = "#{version}"
138138
plugin_root = File.expand_path("#{ENV['CIRCLE_WORKING_DIRECTORY']}/AmplifyPlugins")
139139

140140
sh('bundle', 'exec', 'swift', 'package', 'update')

0 commit comments

Comments
 (0)