Update Fastfile

This commit is contained in:
2023-08-12 21:40:57 +01:00
committed by GitHub
parent d7bbe7b8af
commit fdea9474b2

View File

@@ -25,21 +25,21 @@ platform :android do
build_type: "Release", build_type: "Release",
) )
upload_to_play_store( upload_to_play_store(
aab: "app/build/outputs/bundle/monoWeather/app-driver-release.aab", aab: "app/build/outputs/bundle/monoWeather/app-monoWeather-release.aab",
json_key: "google-play-key.json", json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather") package_name: "h_mal.appttude.com.monoWeather")
end end
desc "Deploy a new Atlas Weather version to the Google Play" desc "Deploy a new Atlas Weather version to the Google Play"
lane :deployMono do lane :deployAtlas do
gradle( gradle(
task: "clean bundle", task: "clean bundle",
flavor: "AtlasWeather", flavor: "AtlasWeather",
build_type: "Release", build_type: "Release",
) )
upload_to_play_store( upload_to_play_store(
aab: "app/build/outputs/bundle/atlasWeather/app-driver-release.aab", aab: "app/build/outputs/bundle/atlasWeather/app-atlas-release.aab",
json_key: "google-play-key.json", json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather") package_name: "h_mal.appttude.com.atlas_weather")
end end
end end