Skip to content

Commit

Permalink
ci(fastlane): only build phone version
Browse files Browse the repository at this point in the history
  • Loading branch information
jarnedemeulemeester committed Apr 14, 2024
1 parent 25ea5e1 commit 346fd73
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -18,7 +18,7 @@ platform :android do
)

gradle(
task: "bundle",
task: "app:phone:bundle",
flavor: "libre",
build_type: "release",
print_command: false,
Expand All @@ -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
Expand Down

0 comments on commit 346fd73

Please sign in to comment.