Skip to content

Commit 53eda7f

Browse files
fix(fastlane): roll out internal betas to testers (release_status completed)
The internal beta upload used release_status: 'draft', which only stages the bundle and waits for a human to publish it in the Play Console, so testers never received it (the release sat as 'Draft'). Use 'completed' so the internal track rolls out to testers immediately. Production stays draft (human confirms rollout). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8650b36 commit 53eda7f

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

fastlane/Fastfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,12 @@ platform :android do
164164
skip_upload_images: true,
165165
skip_upload_screenshots: true,
166166
skip_upload_changelogs: !has_notes,
167-
release_status: "draft"
167+
# "completed" = roll out to internal testers immediately. A "draft" only uploads the
168+
# bundle and waits for a human to publish it in the console (that's the right gate for
169+
# PRODUCTION, but for an internal beta we want testers to get it now).
170+
release_status: "completed"
168171
)
169-
UI.success("Uploaded dev build to Play internal track")
172+
UI.success("Uploaded dev build to Play internal track (rolled out to testers)")
170173
end
171174

172175
desc "Build a dev/beta AAB and upload to the Play Store internal track"

0 commit comments

Comments
 (0)