fastlane-plugin-get_new_build_number 0.2.7 → 0.2.8

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: 17c1a7c7e7633d72685b94f7cf76765071e2bf189175e7943918f82f6cae2887
4
- data.tar.gz: 189a9a5a9bb06a715da3cb4af8338e05b8986963970cfffc79076923afcb3eda
3
+ metadata.gz: 89494ba57ca02a319cb02d1f0fa90de24812310918beae60f62665d663966f1c
4
+ data.tar.gz: e44fe6bb02df0976904c6033a13688ae5012b067edc30083e6697e05acb11b13
5
5
  SHA512:
6
- metadata.gz: 6206ac185ba551ebc0c7a01b795a25d9705b1c25aaa9aa42bfa33a89a3e6c0130a03791dac872334387ff732035ef6656fcd42046cba37041c3bbaf9956f802f
7
- data.tar.gz: 115598f44247ef3bf2011a140a73e97a44af43c0362aa0ea6a8375d4d2e208ee1d07d996436aeb52fc0f29e60df2695b86ad4a4fec357e0693dcd81a9ae40592
6
+ metadata.gz: 13a38bd2b34ceb0f9f85d64341742db56628161fa0c753f0158386ffc58b957efe5252df69eef311dcd08f273cfc716081168dc593f3c908239808b455bd70d2
7
+ data.tar.gz: 81575a93738da5919faf47a31c1a56b2a6a5cba9bdfd60a5cae1ab22baa0b7d0b8a654fd711d3d303ea54f2115d78afbc0940b74e1f53c379c6d3a1ba97acf90
@@ -21,7 +21,7 @@ module Fastlane
21
21
  UI.success("File with new number file exists. Reading build number from it...")
22
22
  latest_build_number = File.read(file).to_i
23
23
  else
24
- UI.message("File with new build number does not exist. New build number will be " \
24
+ UI.important("File with new build number does not exist. New build number will be " \
25
25
  "retrieved and temporary file with it will be created.")
26
26
  latest_build_number = Helper::GetNewBuildNumberHelper.get_latest_build_number(
27
27
  bundle_identifier: params[:bundle_identifier],
@@ -68,25 +68,41 @@ module Fastlane
68
68
  ].max
69
69
 
70
70
  UI.message("Latest build number (Google Play Store): #{google_play_build_number}")
71
-
71
+
72
72
  fad_build_number_ios = 0
73
- unless firebase_app_ios.nil?
74
- fad_build_number_ios = Fastlane::Actions::FirebaseAppDistributionGetLatestReleaseAction.run(
75
- app: firebase_app_ios,
76
- service_credentials_file: firebase_json_key_path
77
- )[:buildVersion].to_i
78
-
79
- UI.message("Latest build (Firebase App Distribution iOS): #{fad_build_number_ios}")
73
+ begin
74
+ unless firebase_app_ios.nil?
75
+ response = Fastlane::Actions::FirebaseAppDistributionGetLatestReleaseAction.run(
76
+ app: firebase_app_ios,
77
+ service_credentials_file: firebase_json_key_path
78
+ )
79
+
80
+ unless response.nil?
81
+ fad_build_number_ios = response[:buildVersion].to_i
82
+ end
83
+
84
+ UI.message("Latest build (Firebase App Distribution iOS): #{fad_build_number_ios}")
85
+ end
86
+ rescue StandardError => e
87
+ UI.error("Error getting latest build number (Firebase App Distribution iOS): #{e.message}")
80
88
  end
81
89
 
82
90
  fad_build_number_android = 0
83
- unless firebase_app_android.nil?
84
- fad_build_number_android = Fastlane::Actions::FirebaseAppDistributionGetLatestReleaseAction.run(
85
- app: firebase_app_android,
86
- service_credentials_file: firebase_json_key_path
87
- )[:buildVersion].to_i
88
-
89
- UI.message("Latest build (Firebase App Distribution Android): #{fad_build_number_android}")
91
+ begin
92
+ unless firebase_app_android.nil?
93
+ response = Fastlane::Actions::FirebaseAppDistributionGetLatestReleaseAction.run(
94
+ app: firebase_app_android,
95
+ service_credentials_file: firebase_json_key_path
96
+ )
97
+
98
+ unless response.nil?
99
+ fad_build_number_android = response[:buildVersion].to_i
100
+ end
101
+
102
+ UI.message("Latest build (Firebase App Distribution Android): #{fad_build_number_android}")
103
+ end
104
+ rescue StandardError => e
105
+ UI.error("Error getting latest build number (Firebase App Distribution Android): #{e.message}")
90
106
  end
91
107
 
92
108
  return [
@@ -100,17 +116,22 @@ module Fastlane
100
116
  # Returns the latest build number ("version code", in Android terminology)
101
117
  # for the given Google Play track.
102
118
  def self.get_google_play_build_number(track:, package_name:, json_key:)
103
- codes = Fastlane::Actions::GooglePlayTrackVersionCodesAction.run(
104
- track:,
105
- package_name:,
106
- json_key:
107
- )
119
+ begin
120
+ codes = Fastlane::Actions::GooglePlayTrackVersionCodesAction.run(
121
+ track:,
122
+ package_name:,
123
+ json_key:
124
+ )
108
125
 
109
- return codes.max
110
- rescue StandardError
111
- UI.message("No build numbers found for track #{track}")
112
- return 0
126
+ return codes.max
127
+ rescue StandardError
128
+ UI.message("No build numbers found for track #{track} (Google Play Store)")
129
+ return 0
130
+ end
113
131
  end
132
+
133
+ # TODO: Don't duplicate so much code
134
+ # def self.get_firebase_app_distribution_build_number()
114
135
  end
115
136
  end
116
137
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GetNewBuildNumber
3
- VERSION = "0.2.7"
3
+ VERSION = "0.2.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-get_new_build_number
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bartek Pacia