Skip to content

Commit 2ae60c6

Browse files
authored
chore: Remove v from release tags (#2733)
1 parent 94c7ed6 commit 2ae60c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/Fastfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ platform :ios do
6565
desc "Tag in git and push to GitHub"
6666
private_lane :add_tag do |options|
6767
next_version = options[:version]
68-
next_tag = "v#{next_version}"
68+
next_tag = "#{next_version}"
6969

7070
add_git_tag(tag: next_tag)
7171
push_git_tags(tag: next_tag)
@@ -75,7 +75,7 @@ platform :ios do
7575
private_lane :post_release do |options|
7676
version = options[:version].to_s
7777
changelog = options[:changelog]
78-
tag = "v#{version}"
78+
tag = "#{version}"
7979

8080
sh('bundle', 'exec', 'swift', 'package', 'update')
8181

0 commit comments

Comments
 (0)