diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 09a4a82..1ba090f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,38 +1,38 @@ # This file contains the fastlane.tools configuration # You can find the documentation at https://docs.fastlane.tools # # For a list of all available actions, check out # # https://docs.fastlane.tools/actions # # For a list of all available plugins, check out # # https://docs.fastlane.tools/plugins/available-plugins # fastlane_version '2.140.0' before_all do ensure_git_branch ensure_git_status_clean git_pull end default_platform(:ios) platform :ios do desc "Push a new beta build to TestFlight" lane :beta do increment_build_number(xcodeproj: "./ios/sylk.xcodeproj") build_app(export_xcargs: "-allowProvisioningUpdates", workspace: "./ios/sylk.xcworkspace", scheme: "sylk") upload_to_testflight end end platform :android do desc "Push a new beta build to Google Play Store" lane :beta do - gradle(task: 'assemble', build_type: 'Release') + gradle(task: 'assemble', build_type: 'Release', project_dir: './android/') upload_to_play_store(track: 'beta') end end