mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-26 16:46:51 +08:00
ios: Add first iteration of Fastlane
This commit is contained in:
8
ios/fastlane/Appfile
Normal file
8
ios/fastlane/Appfile
Normal 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
10
ios/fastlane/Fastfile
Normal 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
|
Reference in New Issue
Block a user