38 lines
1.1 KiB
Ruby
38 lines
1.1 KiB
Ruby
# 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 "Description of what the lane does"
|
|
lane :debug do
|
|
# add actions here: https://docs.fastlane.tools/actions
|
|
gym(
|
|
scheme:"OrderScheduling",
|
|
workspace:"OrderScheduling.xcworkspace",
|
|
clean:true,
|
|
output_directory:"/Users/zd/Desktop/Ipa包/中道调度/Debug",
|
|
output_name:"drivers_debug",
|
|
configuration:"Debug",
|
|
include_symbols:true,
|
|
build_path:"/Users/zd/Desktop/Ipa包/中道调度/Debug",
|
|
archive_path:"/Users/zd/Desktop/Ipa包/中道调度/Debug",
|
|
include_bitcode: false,
|
|
export_method:"development"
|
|
)
|
|
pgyer(api_key: "f024760fe1519016c3a61b7a29f19dcb", update_description: "开发环境")
|
|
end
|
|
end
|