A fork of the Mastodon Android client with Bluesky/ATProto support.
at main 47 lines 1.0 kB view raw
1# This file contains the fastlane.tools configuration 2# You can find the documentation at https://docs.fastlane.tools 3# 4# For a list of all available actions, check out 5# 6# https://docs.fastlane.tools/actions 7# 8# For a list of all available plugins, check out 9# 10# https://docs.fastlane.tools/plugins/available-plugins 11# 12 13# Uncomment the line if you want fastlane to automatically update itself 14# update_fastlane 15 16default_platform(:android) 17 18platform :android do 19 desc "Runs all the tests" 20 lane :test do 21 gradle(task: "test") 22 end 23 24 desc "Deploy a new version to the Google Play" 25 lane :deploy do 26 gradle( 27 task: "bundle", 28 build_type: "release", 29 ) 30 upload_to_play_store( 31 release_status: "draft", 32 skip_upload_images: true, 33 skip_upload_screenshots: true 34 ) 35 end 36 lane :beta do 37 gradle( 38 task: "bundle", 39 build_type: "release", 40 ) 41 upload_to_play_store( 42 track: "beta", 43 skip_upload_images: true, 44 skip_upload_screenshots: true 45 ) 46 end 47end