Class: Fastlane::Actions::SentryFinalizeReleaseAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::SentryFinalizeReleaseAction
- Defined in:
- lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .return_value ⇒ Object
Class Method Summary collapse
Class Method Details
.authors ⇒ Object
58 59 60 |
# File 'lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb', line 58 def self. ["wschurman"] end |
.available_options ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb', line 38 def self. Helper::SentryConfig.common_api_config_items + [ FastlaneCore::ConfigItem.new(key: :version, description: "Release version to finalize on Sentry"), FastlaneCore::ConfigItem.new(key: :app_identifier, short_option: "-a", env_name: "SENTRY_APP_IDENTIFIER", description: "App Bundle Identifier, prepended to version", optional: true), FastlaneCore::ConfigItem.new(key: :build, short_option: "-b", description: "Release build to finalize on Sentry", optional: true) ] end |
.description ⇒ Object
27 28 29 |
# File 'lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb', line 27 def self.description "Finalize a release for a project on Sentry" end |
.details ⇒ Object
31 32 33 34 35 36 |
# File 'lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb', line 31 def self.details [ "This action allows you to finalize releases created for a project on Sentry.", "See https://docs.sentry.io/learn/cli/releases/#finalizing-releases for more information." ].join(" ") end |
.is_supported?(platform) ⇒ Boolean
62 63 64 |
# File 'lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb', line 62 def self.is_supported?(platform) true end |
.return_value ⇒ Object
54 55 56 |
# File 'lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb', line 54 def self.return_value nil end |
.run(params) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/fastlane/plugin/sentry/actions/sentry_finalize_release.rb', line 4 def self.run(params) require 'shellwords' Helper::SentryConfig.parse_api_params(params) version = params[:version] version = "#{params[:app_identifier]}@#{params[:version]}" if params[:app_identifier] version = "#{version}+#{params[:build]}" if params[:build] command = [ "releases", "finalize", version ] Helper::SentryHelper.call_sentry_cli(params, command) UI.success("Successfully finalized release: #{version}") end |