feat: script remove artifacts on android cd (close #15)

This commit is contained in:
Malo Léon 2023-06-09 17:48:23 +02:00
parent 5f9e60e254
commit 02ba94a7da

View File

@ -44,6 +44,12 @@ module Fastlane
version_code: build_number
)
# Delete artifacts files
artifacts = ['android_keys.zip', 'key.jks', 'key.properties', 'service_account_key.json']
artifacts.each do |file|
File.delete(file) if File.exist?(file)
end
UI.success('🍺 Successfully build & deploy appbundle to Google Play Store')
end