Modify internal lane to skip metadata and changelogs

Updated the internal deployment lane to skip uploading metadata and changelogs.

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich
2026-02-02 19:46:10 -06:00
committed by GitHub
parent 5ddd59cd33
commit 8667314d3e

View File

@@ -20,15 +20,13 @@ platform :android do
lane :internal do |options|
aab_path = build_google_release
changelog = options[:changelog]
upload_to_play_store(
track: 'internal',
aab: aab_path,
release_status: 'completed',
skip_upload_apk: true,
skip_upload_metadata: false,
skip_upload_changelogs: false,
skip_upload_metadata: true,
skip_upload_changelogs: true,
skip_upload_images: true,
skip_upload_screenshots: true,
)