Skip to content

Commit

Permalink
Use DRYed branch name logic to create branch in code freeze automation
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Dec 8, 2023
1 parent 661c4de commit 3cd2521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/lanes/release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
end

# Create the release branch
release_branch_name = "release/#{release_version_next}"
release_branch_name = compute_release_branch_name(options:, version: release_version_next)
UI.message 'Creating release branch...'
Fastlane::Helper::GitHelper.create_branch(release_branch_name, from: DEFAULT_BRANCH)
UI.success "Done! New release branch is: #{git_branch}"
Expand Down

0 comments on commit 3cd2521

Please sign in to comment.