fastlane-plugin-stream_actions 0.2.5 → 0.2.6

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: c214ab663139ee3f7ceb037af1ffd56a218a9af5ab2a25b345b9c9cf94d16e38
4
- data.tar.gz: 9007f60f6954d2e5f9066804057bef407d53af67e825724287016bd5bf02d119
3
+ metadata.gz: 376e8f9f27e8dd18aa0270c546c129595159ece0826bcd8bddde69dabb45f1ef
4
+ data.tar.gz: 1322c7d10eefdbdd768d85f25fb496095b2ccec0d813242e8807d76e124a2da5
5
5
  SHA512:
6
- metadata.gz: d636867246bc7a3a2778cb52126c5b65ba3e0eb97af6304b767b44ed65c34e1db8b0f151dadb3fa4b6277424f07528c52a81adc4d20951edf86df6cc17acc7c9
7
- data.tar.gz: 1df7540a62c1b4986c7ebf76bec0bbc669b5d6009433c5201a4ffbbd8eec7689b1b53aaa6c20c225f66226928526a31046b79f657a11df1d3c08ca4482d96c52
6
+ metadata.gz: a5401b35f330d20f62faa16d8d5cb9de202495c7f0fd3f06efd5645a48bf1b4e132cc4fbc7d20aeecf9ab88dd381a82f67ea05cc0edad44109b410154df11aab
7
+ data.tar.gz: 2ee465621d54c09cb6e1b7dd5c37f0429ec2f80e7033d3e0a78c77db3b41fff389dc8238cda2b9f315f9dd74d782766aff99c87c30a7189ae1384cdf8f5acb51
@@ -10,9 +10,13 @@ module Fastlane
10
10
  other_action.pod_push(path: params[:podspec], allow_warnings: true, synchronous: params[:sync])
11
11
  rescue StandardError => e
12
12
  UI.message(e)
13
- UI.message("pod_push failed for #{params[:podspec]}. Waiting a minute until retry for trunk to get updated...")
14
- sleep(60) # sleep for a minute, wait until trunk gets updates
15
- pod_push_safely(params)
13
+ if e.include?('Unable to accept duplicate entry')
14
+ UI.message("pod_push passed for #{params[:podspec]} on previous run. Skipping further attempts.")
15
+ else
16
+ UI.message("pod_push failed for #{params[:podspec]}. Waiting a minute until retry for trunk to get updated...")
17
+ sleep(60) # sleep for a minute, wait until trunk gets updates
18
+ pod_push_safely(params)
19
+ end
16
20
  end
17
21
 
18
22
  #####################################################
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = "0.2.5"
3
+ VERSION = "0.2.6"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream