集成Fastlane

This commit is contained in:
xuemh
2018-07-10 17:31:36 +08:00
parent c4de5175a1
commit 7cde036926
7 changed files with 233 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
# 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
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
build_app(scheme: "Ifish")
upload_to_testflight
end
end