fastlane-plugin-stream_actions 0.2.5 → 0.2.6
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: 376e8f9f27e8dd18aa0270c546c129595159ece0826bcd8bddde69dabb45f1ef
|
4
|
+
data.tar.gz: 1322c7d10eefdbdd768d85f25fb496095b2ccec0d813242e8807d76e124a2da5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
14
|
-
|
15
|
-
|
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
|
#####################################################
|