Skip to content

Commit 5a2c63d

Browse files
authored
chore: updating fastlane script to forcefully fetch tags from remote (#2533)
1 parent 051b2c4 commit 5a2c63d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform :ios do
55
before_all do
66
# Perform a fetch before inferring the next version
77
# to reduce race conditions with simultaneous pipelines attempting to create the same tag
8-
sh('git', 'fetch', '--tags')
8+
sh('git', 'fetch', '--tags', '-f')
99
sh('git', 'fetch')
1010
end
1111
desc "Create a pre-release version by pushing a tag to GitHub"

0 commit comments

Comments
 (0)