fastlane/lib/fastlane/actions/build_ios_app.rb in fastlane-2.127.0.beta.20190625200058 vs fastlane/lib/fastlane/actions/build_ios_app.rb in fastlane-2.127.0.beta.20190627200058

- old
+ new

@@ -1,10 +1,11 @@ module Fastlane module Actions module SharedValues IPA_OUTPUT_PATH = :IPA_OUTPUT_PATH DSYM_OUTPUT_PATH = :DSYM_OUTPUT_PATH + XCODEBUILD_ARCHIVE ||= :XCODEBUILD_ARCHIVE # originally defined in XcodebuildAction end class BuildIosAppAction < Action def self.run(values) require 'gym' @@ -93,10 +94,11 @@ end def self.output [ ['IPA_OUTPUT_PATH', 'The path to the newly generated ipa file'], - ['DSYM_OUTPUT_PATH', 'The path to the dSYM files'] + ['DSYM_OUTPUT_PATH', 'The path to the dSYM files'], + ['XCODEBUILD_ARCHIVE', 'The path to the xcodebuild archive'] ] end def self.return_value "The absolute path to the generated ipa file"