diff --git a/ios/fastlane/Appfile b/ios/fastlane/Appfile new file mode 100644 index 00000000..d713a57d --- /dev/null +++ b/ios/fastlane/Appfile @@ -0,0 +1,8 @@ +app_identifier("io.gitjournal.gitjournal") # The bundle identifier of your app +apple_id("me@vhanda.in") # Your Apple email address + +itc_team_id("119823857") # App Store Connect Team ID +team_id("4NYTN6RU3N") # Developer Portal Team ID + +# For more information about the Appfile, see: +# https://docs.fastlane.tools/advanced/#appfile diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile new file mode 100644 index 00000000..8a07f359 --- /dev/null +++ b/ios/fastlane/Fastfile @@ -0,0 +1,10 @@ +default_platform(:ios) + +platform :ios do + desc "Push a new release build to the App Store" + lane :release do + increment_build_number(build_number: number_of_commits) + build_app(workspace: "Runner.xcworkspace", scheme: "Runner") + upload_to_app_store(skip_metadata: true, skip_screenshots: true) + end +end