Skip to content

Commit 40bca91

Browse files
committed
ci: disable submit_prod lane in Fastfile
Once the beta build is submitted it is published. The idea of the `submit_prod` lane was to promote the beta build to production automatically but leave it in awaiting review. however this doesn't seem to work as expected so we'll just leave it as is
1 parent 38c31ed commit 40bca91

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

fastlane/Fastfile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ platform :android do
4848
)
4949
end
5050

51-
desc "Promote existing Beta build to Production on Google Play"
52-
lane :submit_prod do
53-
upload_to_play_store(
54-
track: 'beta',
55-
track_promote_to: 'production',
56-
track_promote_release_status: 'draft',
57-
skip_upload_apk: true,
58-
skip_upload_aab: true,
59-
skip_upload_metadata: skip_metadata_upload,
60-
skip_upload_images: skip_metadata_upload,
61-
version_code: ENV['VERSION_CODE'],
62-
)
63-
end
51+
# desc "Promote existing Beta build to Production on Google Play"
52+
# lane :submit_prod do
53+
# upload_to_play_store(
54+
# track: 'beta',
55+
# track_promote_to: 'production',
56+
# track_promote_release_status: 'draft',
57+
# skip_upload_apk: true,
58+
# skip_upload_aab: true,
59+
# skip_upload_metadata: skip_metadata_upload,
60+
# skip_upload_images: skip_metadata_upload,
61+
# version_code: ENV['VERSION_CODE'],
62+
# )
63+
# end
6464

6565
desc "Deploy builds to Google Play"
6666
lane :deploy do |options|

0 commit comments

Comments
 (0)