We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b99f388 + f6019e9 commit ef6a15bCopy full SHA for ef6a15b
fastlane/Fastfile
@@ -97,7 +97,8 @@ platform :ios do
97
next_version = options[:version]
98
UI.user_error!("version shouldn't be nil") if next_version.nil?
99
100
- add_git_tag(tag: next_version, grouping: nil)
+ add_git_tag(tag: next_version, grouping: nil, force: true)
101
+ push_git_tags(tag: next_version, force: true)
102
end
103
104
desc "Publish new version to cocoapod trunck"
@@ -114,14 +115,12 @@ platform :ios do
114
115
push_to_git_remote(
116
local_branch: "release",
117
remote_branch: "release",
- tags: true,
118
)
119
120
# update main branch with release branch
121
122
123
remote_branch: "main",
124
125
126
127
0 commit comments