ios: Add first iteration of Fastlane

This commit is contained in:
Vishesh Handa
2019-10-05 02:37:27 +02:00
parent 232a148ead
commit 112122cfcf
2 changed files with 18 additions and 0 deletions

8
ios/fastlane/Appfile Normal file
View File

@ -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

10
ios/fastlane/Fastfile Normal file
View File

@ -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