From 53d51df4c57f314ddb18c660a87fbea02657d6ef Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Mon, 24 Jan 2022 15:12:48 -0800 Subject: [PATCH] customize Fastlane setup output --- fastlane/Appfile | 9 +++------ fastlane/Fastfile | 14 +++++++------- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/fastlane/Appfile b/fastlane/Appfile index 1803063..72de007 100644 --- a/fastlane/Appfile +++ b/fastlane/Appfile @@ -1,6 +1,3 @@ -# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app -# apple_id("[[APPLE_ID]]") # Your Apple email address - - -# For more information about the Appfile, see: -# https://docs.fastlane.tools/advanced/#appfile +app_identifier "edu.mit.scratch.scratch-desktop" # The bundle identifier of your app +apple_id "bot-apple@scratch.mit.edu" # Your Apple email address +team_id "W7AR3WMP87" diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0f39ea6..2e805ed 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -13,11 +13,11 @@ # Uncomment the line if you want fastlane to automatically update itself # update_fastlane -default_platform(:ios) +default_platform(:mac) -platform :ios do - desc "Description of what the lane does" - lane :custom_lane do - # add actions here: https://docs.fastlane.tools/actions - end -end +#platform :mac do +# desc "Description of what the lane does" +# lane :custom_lane do +# # add actions here: https://docs.fastlane.tools/actions +# end +#end