From 346fd73556e0575a5b71915f8294c591064cd1f3 Mon Sep 17 00:00:00 2001 From: Jarne Demeulemeester Date: Sun, 14 Apr 2024 22:31:22 +0200 Subject: [PATCH] ci(fastlane): only build phone version --- fastlane/Fastfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 4c2088ab..2df93427 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -5,7 +5,7 @@ platform :android do lane :publish do gradle(task: "clean") gradle( - task: "assemble", + task: "app:phone:assemble", flavor: "libre", build_type: "release", print_command: false, @@ -18,7 +18,7 @@ platform :android do ) gradle( - task: "bundle", + task: "app:phone:bundle", flavor: "libre", build_type: "release", print_command: false, @@ -31,9 +31,7 @@ platform :android do ) upload_to_play_store( - aab: "./app/phone/build/outputs/bundle/libreRelease/phone-libre-release.aab", track: "production", - rollout: 1, json_key: ENV["FINDROID_PLAY_API_CREDENTIALS"], skip_upload_apk: true, sync_image_upload: true