HockeyApp lane for Fastlane for iOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default_platform :ios | |
platform :ios do | |
desc "Submit a new Beta Build to Hockey App" | |
lane :beta do | |
if !is_ci? | |
changelog = prompt(text: "Please enter what's changed in one sentenence: ") | |
end | |
increment_build_number | |
gym( | |
scheme: "XCODE BUILD SCHEME", | |
export_method: "enterprise", | |
export_options: { | |
provisioningProfiles: { | |
"BUNDLE IDENTIFIER" => "PROVISION PROFILE NAME" | |
} | |
}, | |
include_bitcode: false, | |
include_symbols: true, | |
) | |
hockey( | |
api_token: "HOCKEYAPP API TOKEN", | |
ipa: "#{lane_context[SharedValues::IPA_OUTPUT_PATH]}", | |
dsym: "#{lane_context[SharedValues::DSYM_OUTPUT_PATH]}", | |
notify: "0", | |
notes: changelog, | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment