Class: Fastlane::Actions::SentryUploadDsymAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::SentryUploadDsymAction
- Defined in:
- lib/fastlane/plugin/fastci/actions/sentry_upload_dsym.rb
Overview
Sentry 上传 dSYM 文件
Class Method Summary collapse
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(params) ⇒ Object
Class Method Details
.available_options ⇒ Object
25 26 27 |
# File 'lib/fastlane/plugin/fastci/actions/sentry_upload_dsym.rb', line 25 def self. [] end |
.category ⇒ Object
33 34 35 |
# File 'lib/fastlane/plugin/fastci/actions/sentry_upload_dsym.rb', line 33 def self.category :building end |
.description ⇒ Object
21 22 23 |
# File 'lib/fastlane/plugin/fastci/actions/sentry_upload_dsym.rb', line 21 def self.description "Sentry 上传 dSYM 文件" end |
.is_supported?(platform) ⇒ Boolean
29 30 31 |
# File 'lib/fastlane/plugin/fastci/actions/sentry_upload_dsym.rb', line 29 def self.is_supported?(platform) platform == :ios end |
.run(params) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/fastlane/plugin/fastci/actions/sentry_upload_dsym.rb', line 9 def self.run(params) UI.("*************| Sentry 开始上传 dSYM 文件 |*************") other_action.sentry_debug_files_upload( auth_token: Environment.sentry_auth_token, org_slug: Environment.sentry_org_slug, project_slug: Environment.sentry_project_slug, url: Environment.sentry_url ) end |