fastlane 2.44.0 → 2.44.1
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 +4 -4
- data/fastlane/lib/fastlane/actions/hockey.rb +3 -10
- data/fastlane/lib/fastlane/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3661d20099e4fbf7798f2ef011fbb8e52414eb5
|
|
4
|
+
data.tar.gz: 5a60e26dbaa7d3f879e30fc6333f31414dd11650
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccbdce2650844341713a16c908341553375089d517837cdc874e62bf03cbda39a3523e80233d9962d4d180201ac44cb8e16b81e8ddc3df6753643d1b0b90808e
|
|
7
|
+
data.tar.gz: 5658cd7bf631f3f513c94e5829c4a72a4121f1825d2d13e7a80033b5e4ccb8483ba563733b761666aca5d1bc28e04da745c8f0edd7cfc7e187c4adcf6ffcadee
|
|
@@ -171,11 +171,11 @@ module Fastlane
|
|
|
171
171
|
case response.status
|
|
172
172
|
when 200...300
|
|
173
173
|
url = response.body['public_url']
|
|
174
|
-
|
|
174
|
+
|
|
175
|
+
Actions.lane_context[SharedValues::HOCKEY_DOWNLOAD_LINK] = url
|
|
175
176
|
Actions.lane_context[SharedValues::HOCKEY_BUILD_INFORMATION] = response.body
|
|
176
|
-
|
|
177
|
+
|
|
177
178
|
UI.message("Public Download URL: #{url}") if url
|
|
178
|
-
UI.message("New Version Download URL: #{app_url}") if app_url
|
|
179
179
|
UI.success('Build successfully uploaded to HockeyApp!')
|
|
180
180
|
else
|
|
181
181
|
if response.body.to_s.include?("App could not be created")
|
|
@@ -186,13 +186,6 @@ module Fastlane
|
|
|
186
186
|
end
|
|
187
187
|
end
|
|
188
188
|
|
|
189
|
-
def self.download_url(body)
|
|
190
|
-
version_url = body['public_url']
|
|
191
|
-
version_url = body['public_url'] + '/app_versions/' + body['config_url'].split('/').last if body['config_url']
|
|
192
|
-
version_url = body['public_url'] + '/app_versions/' + body['version'] if body['version']
|
|
193
|
-
version_url
|
|
194
|
-
end
|
|
195
|
-
|
|
196
189
|
def self.description
|
|
197
190
|
"Upload a new build to HockeyApp"
|
|
198
191
|
end
|