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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 32e5c6e2bb77ee5eb7fc4c7ed5e21ea5a1989486
4
- data.tar.gz: e2d209799b8b192c7acd63935457294431c0d64f
3
+ metadata.gz: e3661d20099e4fbf7798f2ef011fbb8e52414eb5
4
+ data.tar.gz: 5a60e26dbaa7d3f879e30fc6333f31414dd11650
5
5
  SHA512:
6
- metadata.gz: 42095a29dd7a3b33474a72b5a68ff810f5110fcb066163f497575a55146c8f127d3eeea27075bf18aa7b28b160637db083ac4bbfdc92d61a96dc68cbe4cf2ea5
7
- data.tar.gz: 694821c94a136fe86c1b54250a3aa4f017aea199bd82d586c48194f9de9039ba17bc3abbc5acc2a211af1bdd0744b1c7c752c5240085a055f235a9fda56d3b4f
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
- app_url = self.download_url(response.body)
174
+
175
+ Actions.lane_context[SharedValues::HOCKEY_DOWNLOAD_LINK] = url
175
176
  Actions.lane_context[SharedValues::HOCKEY_BUILD_INFORMATION] = response.body
176
- Actions.lane_context[SharedValues::HOCKEY_DOWNLOAD_LINK] = app_url
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
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.44.0'.freeze
2
+ VERSION = '2.44.1'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.44.0
4
+ version: 2.44.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause