class Fastlane::Actions::SentryCreateReleaseAction
Public Class Methods
available_options()
click to toggle source
# 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
description()
click to toggle source
@!group Documentation
# File lib/fastlane/plugin/sentry/actions/sentry_create_release.rb, line 28 def self.description "Create new releases for a project on Sentry" end
details()
click to toggle source
# 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)
click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_create_release.rb, line 68 def self.is_supported?(platform) true end
return_value()
click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_create_release.rb, line 60 def self.return_value nil end
run(params)
click to toggle source
# 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