27 lines
660 B
Plaintext
27 lines
660 B
Plaintext
# For more information about this configuration visit
|
|
# https://docs.fastlane.tools/actions/gym/#gymfile
|
|
|
|
# In general, you can use the options available
|
|
# fastlane gym --help
|
|
|
|
# Remove the # in front of the line to enable the option
|
|
|
|
# scheme "Example"
|
|
|
|
# sdk "iphoneos9.0"
|
|
|
|
build_target = ENV["TARGET"]
|
|
stage_build_path = "#{ENV["BUILD_PATH"]}/#{build_target}"
|
|
stage_artifacts_path = "#{ENV["DIST_PATH"]}/#{build_target}"
|
|
|
|
derived_data_path stage_build_path
|
|
buildlog_path stage_build_path
|
|
build_path stage_build_path
|
|
output_directory stage_artifacts_path
|
|
output_name ENV["APP_NAME"]
|
|
|
|
clean true
|
|
silent false
|
|
include_bitcode false
|
|
skip_profile_detection true
|