Class: Fastlane::Actions::SentryCreateReleaseAction

Inherits:
Action
  • Object
show all
Defined in:
lib/fastlane/plugin/sentry/actions/sentry_create_release.rb

Documentation collapse

Class Method Summary collapse

Class Method Details

.authorsObject



64
65
66
# File 'lib/fastlane/plugin/sentry/actions/sentry_create_release.rb', line 64

def self.authors
  ["wschurman"]
end

.available_optionsObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/fastlane/plugin/sentry/actions/sentry_create_release.rb', line 39

def self.available_options
  Helper::SentryConfig.common_api_config_items + [
    FastlaneCore::ConfigItem.new(key: :version,
                                 description: "Release version to create 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 create on Sentry",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :finalize,
                                 description: "Whether to finalize the release. If not provided or false, the release can be finalized using the finalize_release action",
                                 default_value: false,
                                 is_string: false,
                                 optional: true)
  ]
end

.descriptionObject



28
29
30
# File 'lib/fastlane/plugin/sentry/actions/sentry_create_release.rb', line 28

def self.description
  "Create new releases for a project on Sentry"
end

.detailsObject



32
33
34
35
36
37
# File 'lib/fastlane/plugin/sentry/actions/sentry_create_release.rb', line 32

def self.details
  [
    "This action allows you to create new releases for a project on Sentry.",
    "See https://docs.sentry.io/learn/cli/releases/#creating-releases for more information."
  ].join(" ")
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


68
69
70
# File 'lib/fastlane/plugin/sentry/actions/sentry_create_release.rb', line 68

def self.is_supported?(platform)
  true
end

.return_valueObject



60
61
62
# File 'lib/fastlane/plugin/sentry/actions/sentry_create_release.rb', line 60

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
22
# File 'lib/fastlane/plugin/sentry/actions/sentry_create_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",
    "new",
    version
  ]
  command.push("--finalize") if params[:finalize] == true

  Helper::SentryHelper.call_sentry_cli(params, command)
  UI.success("Successfully created release: #{version}")
end