Class: Fastlane::Actions::UninowSentrySetCommitsAction

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

Documentation collapse

Class Method Summary collapse

Class Method Details

.authorsObject



70
71
72
# File 'lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb', line 70

def self.authors
  ["brownoxford"]
end

.available_optionsObject



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb', line 43

def self.available_options
  Helper::UninowSentryConfig.common_api_config_items + [
    FastlaneCore::ConfigItem.new(key: :version,
                                 description: "Release version 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: :auto,
                                description: "Enable completely automated commit management",
                                is_string: false,
                                default_value: false),
    FastlaneCore::ConfigItem.new(key: :clear,
                                description: "Clear all current commits from the release",
                                is_string: false,
                                default_value: false),
    FastlaneCore::ConfigItem.new(key: :commit,
                                description: "Commit spec, see `sentry-cli releases help set-commits` for more information",
                                optional: true)
  ]
end

.descriptionObject



32
33
34
# File 'lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb', line 32

def self.description
  "Set commits of a release"
end

.detailsObject



36
37
38
39
40
41
# File 'lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb', line 36

def self.details
  [
    "This action allows you to set commits in a release for a project on Sentry.",
    "See https://docs.sentry.io/cli/releases/#sentry-cli-commit-integration for more information."
  ].join(" ")
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


74
75
76
# File 'lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb', line 74

def self.is_supported?(platform)
  true
end

.return_valueObject



66
67
68
# File 'lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb', line 66

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
23
24
25
26
# File 'lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb', line 4

def self.run(params)
  require 'shellwords'

  Helper::UninowSentryHelper.check_sentry_cli!
  Helper::UninowSentryConfig.parse_api_params(params)

  version = params[:version]
  version = "#{params[:app_identifier]}-#{params[:version]}" if params[:app_identifier]

  command = [
    "sentry-cli",
    "releases",
    "set-commits",
    version
  ]

  command.push('--auto') if params[:auto]
  command.push('--clear') if params[:clear]
  command.push('--commit').push(params[:commit]) unless params[:commit].nil?

  Helper::UninowSentryHelper.call_sentry_cli(command)
  UI.success("Successfully set commits for release: #{version}")
end