fastlane-plugin-dynatrace 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99b5f6070d7eb68fccc4b912a89c4ae9a15814f041baa97c683a2f8c1b9e8590
4
- data.tar.gz: c547493757afd54cc2f256debbba3487dd73cfab0aa23c961b1a641220c18ab9
3
+ metadata.gz: 2a4bb1f32d9beb111e957c5247455a16fac1fdc31ab91efd0f3821e3bffdd707
4
+ data.tar.gz: 62b51b71bce9470c3fdae48c6c1d83d59d2f92430729a3b289e51465460b5e3e
5
5
  SHA512:
6
- metadata.gz: 7b06bfc63cf1707d8e9d33d2c0f36046a848f43adfa1babac635e8dfb8a7d42dfc85cd19f25d49453de686c5577ab1910fe6f2a3fe77af885a97b926210d350d
7
- data.tar.gz: 594bd21d1c29fc5b59adda5307ba4a7b064fb345d4d984446ecc143732265757a1810db839c9dceb069f72d49c9cb2a19b7dbbc19d6fe54e1b3a9547c3e87e32
6
+ metadata.gz: 3ff43ef6e41476bcaa630ac0fedb477349be4abe547ca301b5950de67528270795b4d1f6eefa5fee5d5fc22a2405739c969aead5dc35289ce299d0ee802b20e6
7
+ data.tar.gz: 2b52fe099e14027b341f6ec05056303772e9359e4707e96b610388a979fe9c1e24963938151ad76135afac467a4a95eea6ffa3ca86e997c1550a8528b9e6c2f4
data/README.md CHANGED
@@ -114,6 +114,7 @@ dynatrace_process_symbols(
114
114
  | version | The CFBundleVersion (iOS, tvOS) / versionCode (Android). Is also used for the dSYM download. | |
115
115
  | symbolsfile | Path to the dSYM file to be processed. If downloadDsyms is set, this is only a fallback. | |
116
116
  | server | The API endpoint for the Dynatrace environment (e.g. `https://environmentID.live.dynatrace.com` or `https://dynatrace-managed.com/e/environmentID`). | |
117
+ | cleanBuildArtifacts | Clean build artifacts after processing. | `true` |
117
118
  | debugMode | Enable debug logging. | false |
118
119
 
119
120
  ## App Store Connect Two-Factor-Authentication
@@ -135,7 +136,7 @@ You can generate a session by running `fastlane spaceauth -u user@email.com` on
135
136
  Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
136
137
 
137
138
  ## Tests
138
- This plugin includes a set of RSpec unit tests, which can be executed by running ` bundle exec rspec spec`.
139
+ This plugin includes a set of RSpec unit tests, which can be executed by running `bundle exec rspec spec`.
139
140
 
140
141
  ## Issues and Feedback
141
142
  For any other issues and feedback about this plugin, please submit it to this repository or contact [Dynatrace Support](https://support.dynatrace.com).
@@ -158,8 +158,10 @@ module Fastlane
158
158
  end
159
159
  })
160
160
 
161
- UI.message "Cleaning build artifacts"
162
- Fastlane::Actions::CleanBuildArtifactsAction.run(exclude_pattern: nil)
161
+ if params[:cleanBuildArtifacts]
162
+ UI.message "Cleaning build artifacts"
163
+ Fastlane::Actions::CleanBuildArtifactsAction.run(exclude_pattern: nil)
164
+ end
163
165
  end
164
166
 
165
167
  def self.description
@@ -266,6 +268,12 @@ module Fastlane
266
268
  UI.user_error!("Please provide your environment API endpoint. Pass using `server: 'server'`") unless (value and not value.empty?)
267
269
  end),
268
270
 
271
+ FastlaneCore::ConfigItem.new(key: :cleanBuildArtifacts,
272
+ env_name: "FL_UPLOAD_TO_DYNATRACE_CLEAN_BUILD_ARTIFACTS",
273
+ default_value: true,
274
+ is_string: false,
275
+ description: "Clean build artifacts after processing"),
276
+
269
277
  FastlaneCore::ConfigItem.new(key: :debugMode,
270
278
  env_name: "FL_UPLOAD_TO_DYNATRACE_DEBUG_MODE",
271
279
  description: "Enable debug logging",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Dynatrace
3
- VERSION = "1.0.4"
3
+ VERSION = "1.0.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-dynatrace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dynatrace LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-19 00:00:00.000000000 Z
11
+ date: 2021-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry