From 53e512462bb95ac6f665ff6260dffe71b4c8980a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Tue, 11 Jul 2023 15:59:16 +0200 Subject: [PATCH] feat: remove comments on android pipeline to upload build --- .../actions/build_and_deploy_action.rb | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb index a50c71d..72518a8 100644 --- a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb +++ b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb @@ -24,16 +24,15 @@ module Fastlane UI.message("👉🏼 App built") # Upload the Android App Bundle to the Play Store - # other_action.upload_to_play_store( - # track: params[:beta_type], - # json_key: './service_account_key.json', - # aab: '../build/app/outputs/bundle/release/app-release.aab', - # skip_upload_metadata: true, - # skip_upload_images: true, - # skip_upload_screenshots: true, - # release_status: "draft", - # version_code: build_number - # ) + other_action.upload_to_play_store( + track: params[:beta_type], + json_key: './service_account_key.json', + aab: '../build/app/outputs/bundle/release/app-release.aab', + skip_upload_metadata: true, + skip_upload_images: true, + skip_upload_screenshots: true, + release_status: "draft" + ) # Delete artifacts files artifacts = ['android_keys.zip', 'key.jks', 'key.properties', 'service_account_key.json']