Skip to content

Commit

Permalink
chore: updating fastlane script to forcefully fetch tags from remote (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh62 committed Nov 2, 2022
1 parent 051b2c4 commit 5a2c63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Expand Up @@ -5,7 +5,7 @@ platform :ios do
before_all do
# Perform a fetch before inferring the next version
# to reduce race conditions with simultaneous pipelines attempting to create the same tag
sh('git', 'fetch', '--tags')
sh('git', 'fetch', '--tags', '-f')
sh('git', 'fetch')
end
desc "Create a pre-release version by pushing a tag to GitHub"
Expand Down

0 comments on commit 5a2c63d

Please sign in to comment.