Skip to content

Commit 5af0216

Browse files
committed
feat: upload to play store releases to alpha
1 parent c7b4893 commit 5af0216

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

android/fastlane/Fastfile

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,23 @@ platform :android do
5151
track: "internal",
5252
aab: "../build/app/outputs/bundle/release/app-release.aab",
5353
json_key_data: json_key,
54-
# Change to "completed" once your app is ready to publish
55-
release_status: "draft",
54+
release_status: "completed",
5655
timeout: 600,
5756
sync_image_upload: true,
5857
)
5958

60-
## Uncomment the following line to promote the internal track to alpha
61-
# upload_to_play_store(
62-
# track: "internal",
63-
# track_promote_to: "alpha",
64-
# json_key_data: json_key,
65-
# skip_upload_apk: true,
66-
# skip_upload_aab: true,
67-
# skip_upload_metadata: true,
68-
# skip_upload_changelogs: true,
69-
# skip_upload_images: true,
70-
# skip_upload_screenshots: true
71-
# )
59+
# Promote the internal track to alpha
60+
upload_to_play_store(
61+
track: "internal",
62+
track_promote_to: "alpha",
63+
json_key_data: json_key,
64+
skip_upload_apk: true,
65+
skip_upload_aab: true,
66+
skip_upload_metadata: true,
67+
skip_upload_changelogs: true,
68+
skip_upload_images: true,
69+
skip_upload_screenshots: true
70+
)
7271
end
7372

7473
lane :build do

0 commit comments

Comments
 (0)