23 lines
433 B
Ruby
23 lines
433 B
Ruby
import "../build-scripts/xcode/commonFastfile"
|
|
|
|
lane :StandardDebug do |options|
|
|
buildConfiguration(options)
|
|
end
|
|
|
|
lane :StandardRelease do |options|
|
|
buildConfiguration(options)
|
|
end
|
|
|
|
lane :EnterpriseDebug do |options|
|
|
buildConfiguration(options)
|
|
end
|
|
|
|
lane :EnterpriseRelease do |options|
|
|
buildConfiguration(options)
|
|
end
|
|
|
|
lane :AppStoreRelease do |options|
|
|
options[:uploadToAppStore] = true
|
|
buildConfiguration(options)
|
|
end
|