Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 0d64565

Browse files
committed
Update code to only specify a rollout when the track isn't draft
1 parent 4023f94 commit 0d64565

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ platform :android do
113113
lane :build_and_upload_to_play_store do |track: 'internal', release_status: 'draft'|
114114
# TODO: using `internal`` track with `draft` releases by default while the release itself is in draft mode
115115
build_bundle
116-
upload_to_store(track: track, release_status: release_status, rollout: '1')
116+
upload_to_store(track: track, release_status: release_status, rollout: release_status == 'draft' ? nil : '1')
117117
end
118118

119119
#####################################################################################

0 commit comments

Comments
 (0)