From c0106624744997149be0302e2e96125faed0fd71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Thu, 10 Aug 2023 16:10:54 +0200 Subject: [PATCH] fix: update promote action to make supply working on promote --- .../fastlane/plugin/android_cd/actions/promote_action.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/promote_action.rb b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/promote_action.rb index 5188e41..d0957a4 100644 --- a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/promote_action.rb +++ b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/promote_action.rb @@ -7,12 +7,12 @@ module Fastlane def self.run(params) # Check from parameters unless Helper::AndroidCdHelper.is_set(params[:from]) - UI.user_error!("❌ Parameters from cannot be null") + raise ArgumentError, "❌ Parameters from cannot be null" end # Check destination parameters unless Helper::AndroidCdHelper.is_set(params[:destination]) - UI.user_error!("❌ Parameters destination cannot be null") + raise ArgumentError, "❌ Parameters destination cannot be null" end UI.message("⌛️ Promoting to Google Play Store from #{params[:from]} to #{params[:destination]}..") @@ -23,6 +23,7 @@ module Fastlane # Upload the Android App Bundle to the Play Store other_action.upload_to_play_store( track: params[:from], + track_promote_to: params[:destination], json_key: './service_account_key.json', skip_upload_apk: true, skip_upload_aab: true, @@ -32,6 +33,10 @@ module Fastlane skip_upload_screenshots: true ) + # Delete artifacts files + artifacts = ['android_keys.zip', 'key.jks', 'key.properties', 'service_account_key.json'] + Helper::AndroidCdHelper.delete_artifacts(artifacts) + UI.success('🍺 Successfully promote appbundle to Google Play Store') end