Skip to content

Commit

Permalink
Add missing trigger_release_build to Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
leandroalonso committed Sep 2, 2022
1 parent f6c1e5a commit d633b63
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,14 @@ platform :ios do
trigger_buildkite_release_build(branch: options[:branch_to_build], beta: true)
end

# Triggers a stable release build on CI
#
# @option [String] branch_to_build The name of the branch we want the CI to build, e.g. `release/19.3`
#
lane :trigger_release_build do |options|
trigger_buildkite_release_build(branch: options[:branch_to_build], beta: false)
end

# Finalizes a release at the end of a sprint to submit to the App Store
#
# - Updates store metadata
Expand Down

0 comments on commit d633b63

Please sign in to comment.