Prepare iOS/Android pipeline for RC #12

Merged
malo merged 7 commits from feat/prepare-android-pipeline-for-rc into main 2023-06-09 15:56:57 +00:00
Showing only changes of commit d86c49d7ba - Show all commits

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