fastlane-plugin-appcenter 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ed345ffa12f5eb4ad5de4a627367908c22be9b9854e77f0a0149e708a4edc9a
|
4
|
+
data.tar.gz: 6574127a56bf36345e651a65d5ed69c406c4e7edaa68af8db9522afc81c45586
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0713dd1a8a2acbe4bbb30eab946cc148c1c5b101f09fc1992a9384ae438f5a252df7f07c6c756dea259fbfe6525dcc0eee60b403a5b583790cc5634643926a03
|
7
|
+
data.tar.gz: 4c18b39f4e3edd1b288dabfade13c3867b4223e50521f545746d5c27b1776782603fc8225de9c03869ba608e55a676a1c2f84c737e4c3a22f573edf62f8b836d
|
@@ -4,6 +4,11 @@ module Fastlane
|
|
4
4
|
MAX_RELEASE_NOTES_LENGTH = 5000
|
5
5
|
end
|
6
6
|
|
7
|
+
module SharedValues
|
8
|
+
APPCENTER_DOWNLOAD_LINK = :APPCENTER_DOWNLOAD_LINK
|
9
|
+
APPCENTER_BUILD_INFORMATION = :APPCENTER_BUILD_INFORMATION
|
10
|
+
end
|
11
|
+
|
7
12
|
class AppcenterUploadAction < Action
|
8
13
|
# run whole upload process for dSYM files
|
9
14
|
def self.run_dsym_upload(params)
|
@@ -1,10 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
2
|
module Helper
|
3
|
-
module SharedValues
|
4
|
-
APPCENTER_DOWNLOAD_LINK = :APPCENTER_DOWNLOAD_LINK
|
5
|
-
APPCENTER_BUILD_INFORMATION = :APPCENTER_BUILD_INFORMATION
|
6
|
-
end
|
7
|
-
|
8
3
|
class AppcenterHelper
|
9
4
|
|
10
5
|
# create request
|
@@ -260,8 +255,8 @@ module Fastlane
|
|
260
255
|
|
261
256
|
UI.message("DEBUG: #{JSON.pretty_generate(release)}") if ENV['DEBUG']
|
262
257
|
|
263
|
-
Actions.lane_context[SharedValues::APPCENTER_DOWNLOAD_LINK] = download_url
|
264
|
-
Actions.lane_context[SharedValues::APPCENTER_BUILD_INFORMATION] = release
|
258
|
+
Actions.lane_context[Fastlane::Actions::SharedValues::APPCENTER_DOWNLOAD_LINK] = download_url
|
259
|
+
Actions.lane_context[Fastlane::Actions::SharedValues::APPCENTER_BUILD_INFORMATION] = release
|
265
260
|
|
266
261
|
UI.message("Release #{release['short_version']} was successfully updated")
|
267
262
|
|
@@ -301,8 +296,8 @@ module Fastlane
|
|
301
296
|
|
302
297
|
UI.message("DEBUG: received release #{JSON.pretty_generate(release)}") if ENV['DEBUG']
|
303
298
|
|
304
|
-
Actions.lane_context[SharedValues::APPCENTER_DOWNLOAD_LINK] = download_url
|
305
|
-
Actions.lane_context[SharedValues::APPCENTER_BUILD_INFORMATION] = release
|
299
|
+
Actions.lane_context[Fastlane::Actions::SharedValues::APPCENTER_DOWNLOAD_LINK] = download_url
|
300
|
+
Actions.lane_context[Fastlane::Actions::SharedValues::APPCENTER_BUILD_INFORMATION] = release
|
306
301
|
|
307
302
|
UI.message("Public Download URL: #{download_url}") if download_url
|
308
303
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-appcenter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Microsoft Corporation
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-04-
|
11
|
+
date: 2019-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|