diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1207918cb9..0fbd8f677b 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -545,7 +545,7 @@ release in progress and you're making a follow-up internal release that includes # Create the branch and push if is_ci sha = Action.sh('git', 'rev-parse', source_version).chomp - Action.sh('gh', 'api', '--method', 'POST', '/repos/duckduckgo/macos-browser/git/refs', '-f', "ref='refs/heads/#{release_branch}'", '-f', "sha='#{sha}'") + Action.sh('gh', 'api', '--method', 'POST', '/repos/duckduckgo/macos-browser/git/refs', '-f', "ref=refs/heads/#{release_branch}", '-f', "sha=#{sha}") else Action.sh('git', 'fetch', '--tags') Action.sh('git', 'checkout', '-b', release_branch, source_version)