We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03872b1 commit b8dd098Copy full SHA for b8dd098
frameworks/Fastfile
@@ -174,7 +174,8 @@ lane :release do |options|
174
175
if is_set( homebrew_formula_name ) && is_set( lane_context[SharedValues::SET_GITHUB_RELEASE_HTML_LINK] )
176
UI.important("Bumping Homebrew tap \"#{homebrew_formula_name}\" with version #{version}")
177
- sh "brew bump-formula-pr --no-audit --message=\"Update Formula #{version}\" --version=\"#{version}\" #{homebrew_formula_name}"
+ # We need to specify `--no-fork` to make the automatic version bump work
178
+ sh "brew bump-formula-pr --no-audit --no-fork --message=\"Update Formula #{version}\" --version=\"#{version}\" \"#{homebrew_formula_name}\""
179
end
180
181
0 commit comments