fastlane 2.128.0 → 2.132.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +64 -64
  3. data/cert/lib/cert/module.rb +2 -0
  4. data/cert/lib/cert/options.rb +6 -0
  5. data/cert/lib/cert/runner.rb +17 -11
  6. data/deliver/lib/deliver/submit_for_review.rb +1 -1
  7. data/fastlane/lib/fastlane.rb +4 -1
  8. data/fastlane/lib/fastlane/actions/.hockey.rb.swp +0 -0
  9. data/fastlane/lib/fastlane/actions/.slack.rb.swp +0 -0
  10. data/fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp +0 -0
  11. data/fastlane/lib/fastlane/actions/actions_helper.rb +4 -0
  12. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +11 -3
  13. data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +1 -1
  14. data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +1 -1
  15. data/fastlane/lib/fastlane/actions/carthage.rb +4 -3
  16. data/fastlane/lib/fastlane/actions/commit_github_file.rb +1 -1
  17. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +1 -1
  18. data/fastlane/lib/fastlane/actions/danger.rb +7 -0
  19. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +23 -4
  20. data/fastlane/lib/fastlane/actions/download_dsyms.rb +35 -9
  21. data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +58 -0
  22. data/fastlane/lib/fastlane/actions/get_version_number.rb +21 -2
  23. data/fastlane/lib/fastlane/actions/github_api.rb +1 -1
  24. data/fastlane/lib/fastlane/actions/gradle.rb +37 -8
  25. data/fastlane/lib/fastlane/actions/import_from_git.rb +1 -1
  26. data/fastlane/lib/fastlane/actions/onesignal.rb +59 -29
  27. data/fastlane/lib/fastlane/actions/pod_push.rb +29 -10
  28. data/fastlane/lib/fastlane/actions/puts.rb +1 -1
  29. data/fastlane/lib/fastlane/actions/register_devices.rb +38 -22
  30. data/fastlane/lib/fastlane/actions/resign.rb +2 -2
  31. data/fastlane/lib/fastlane/actions/slather.rb +1 -0
  32. data/fastlane/lib/fastlane/actions/sonar.rb +18 -0
  33. data/fastlane/lib/fastlane/actions/update_fastlane.rb +1 -1
  34. data/fastlane/lib/fastlane/commands_generator.rb +17 -1
  35. data/fastlane/lib/fastlane/fast_file.rb +7 -2
  36. data/fastlane/lib/fastlane/helper/adb_helper.rb +5 -0
  37. data/fastlane/lib/fastlane/helper/crashlytics_helper.rb +12 -6
  38. data/fastlane/lib/fastlane/plugins/plugin_manager.rb +2 -0
  39. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +3 -0
  40. data/fastlane/lib/fastlane/setup/setup_android.rb +1 -1
  41. data/fastlane/lib/fastlane/swift_fastlane_api_generator.rb +116 -32
  42. data/fastlane/lib/fastlane/swift_fastlane_function.rb +11 -7
  43. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +4 -0
  44. data/fastlane/lib/fastlane/version.rb +1 -1
  45. data/fastlane/swift/Actions.swift +15 -0
  46. data/fastlane/swift/Deliverfile.swift +1 -1
  47. data/fastlane/swift/Fastlane.swift +341 -294
  48. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +9 -0
  49. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  50. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  51. data/fastlane/swift/Gymfile.swift +1 -1
  52. data/fastlane/swift/GymfileProtocol.swift +13 -11
  53. data/fastlane/swift/Matchfile.swift +1 -1
  54. data/fastlane/swift/MatchfileProtocol.swift +7 -1
  55. data/fastlane/swift/Plugins.swift +15 -0
  56. data/fastlane/swift/Precheckfile.swift +1 -1
  57. data/fastlane/swift/Scanfile.swift +1 -1
  58. data/fastlane/swift/ScanfileProtocol.swift +3 -3
  59. data/fastlane/swift/Screengrabfile.swift +1 -1
  60. data/fastlane/swift/Snapshotfile.swift +1 -1
  61. data/fastlane/swift/SnapshotfileProtocol.swift +3 -1
  62. data/fastlane/swift/upgrade_manifest.json +1 -1
  63. data/fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb +1 -1
  64. data/fastlane_core/lib/fastlane_core/command_executor.rb +1 -1
  65. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +1 -1
  66. data/fastlane_core/lib/fastlane_core/helper.rb +1 -1
  67. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +1 -3
  68. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +3 -2
  69. data/frameit/lib/frameit/editor.rb +1 -1
  70. data/frameit/lib/frameit/screenshot.rb +4 -0
  71. data/gym/lib/gym/.runner.rb.swp +0 -0
  72. data/gym/lib/gym/generators/build_command_generator.rb +5 -1
  73. data/gym/lib/gym/options.rb +17 -17
  74. data/gym/lib/gym/runner.rb +33 -5
  75. data/match/lib/match/generator.rb +1 -0
  76. data/match/lib/match/importer.rb +1 -1
  77. data/match/lib/match/module.rb +2 -0
  78. data/match/lib/match/nuke.rb +6 -6
  79. data/match/lib/match/options.rb +17 -0
  80. data/match/lib/match/runner.rb +13 -9
  81. data/match/lib/match/storage/git_storage.rb +8 -2
  82. data/match/lib/match/storage/google_cloud_storage.rb +82 -33
  83. data/match/lib/match/storage/interface.rb +1 -1
  84. data/pilot/lib/pilot/.manager.rb.swp +0 -0
  85. data/produce/lib/produce/service.rb +7 -1
  86. data/scan/lib/scan/options.rb +1 -1
  87. data/scan/lib/scan/runner.rb +1 -1
  88. data/sigh/lib/sigh/download_all.rb +48 -8
  89. data/sigh/lib/sigh/runner.rb +13 -5
  90. data/snapshot/lib/assets/SnapshotHelper.swift +3 -3
  91. data/snapshot/lib/snapshot/commands_generator.rb +2 -2
  92. data/snapshot/lib/snapshot/options.rb +5 -0
  93. data/snapshot/lib/snapshot/reports_generator.rb +3 -0
  94. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
  95. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +1 -1
  96. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +16 -1
  97. data/snapshot/lib/snapshot/update.rb +4 -2
  98. data/spaceship/lib/spaceship/client.rb +1 -1
  99. data/spaceship/lib/spaceship/connect_api/.DS_Store +0 -0
  100. data/spaceship/lib/spaceship/connect_api/models/app.rb +6 -6
  101. data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +1 -0
  102. data/spaceship/lib/spaceship/connect_api/models/build.rb +3 -3
  103. data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +1 -1
  104. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +1 -1
  105. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +1 -1
  106. data/spaceship/lib/spaceship/connect_api/models/device.rb +1 -1
  107. data/spaceship/lib/spaceship/connect_api/models/profile.rb +1 -1
  108. data/spaceship/lib/spaceship/du/du_client.rb +4 -0
  109. data/spaceship/lib/spaceship/portal/.certificate.rb.swp +0 -0
  110. data/spaceship/lib/spaceship/portal/certificate.rb +15 -1
  111. data/spaceship/lib/spaceship/portal/provisioning_profile.rb +1 -1
  112. data/spaceship/lib/spaceship/spaceauth_runner.rb +1 -1
  113. data/spaceship/lib/spaceship/test_flight/tester.rb +1 -1
  114. data/spaceship/lib/spaceship/tunes/app_version.rb +4 -0
  115. data/spaceship/lib/spaceship/tunes/application.rb +4 -0
  116. data/spaceship/lib/spaceship/tunes/availability.rb +40 -8
  117. data/spaceship/lib/spaceship/tunes/b2b_organization.rb +50 -0
  118. data/spaceship/lib/spaceship/tunes/build_details.rb +160 -18
  119. data/spaceship/lib/spaceship/tunes/display_family.rb +3 -3
  120. data/spaceship/lib/spaceship/tunes/iap.rb +2 -0
  121. data/spaceship/lib/spaceship/tunes/iap_detail.rb +17 -0
  122. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +10 -2
  123. data/spaceship/lib/spaceship/tunes/tunes_client.rb +63 -2
  124. data/supply/lib/supply/client.rb +1 -1
  125. metadata +59 -45
@@ -146,15 +146,43 @@ module Gym
146
146
  containing_directory = File.expand_path("..", PackageCommandGenerator.dsym_path)
147
147
  bcsymbolmaps_directory = File.expand_path("../../BCSymbolMaps", PackageCommandGenerator.dsym_path)
148
148
  available_dsyms = Dir.glob("#{containing_directory}/*.dSYM")
149
+ uuid_regex = /[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}/
149
150
 
150
151
  if Dir.exist?(bcsymbolmaps_directory)
151
152
  UI.message("Mapping dSYM(s) using generated BCSymbolMaps") unless Gym.config[:silent]
152
153
  available_dsyms.each do |dsym|
153
- command = []
154
- command << "dsymutil"
155
- command << "--symbol-map #{bcsymbolmaps_directory.shellescape}"
156
- command << dsym.shellescape
157
- Helper.backticks(command.join(" "), print: !Gym.config[:silent])
154
+ dwarfdump_command = []
155
+ dwarfdump_command << "dwarfdump"
156
+ dwarfdump_command << "--uuid #{dsym.shellescape}"
157
+
158
+ dwarfdump_result = Helper.backticks(dwarfdump_command.join(" "), print: false)
159
+ architecture_infos = dwarfdump_result.split("\n")
160
+ architecture_uuids = architecture_infos.map do |info|
161
+ info_array = info.split(" ")
162
+ uuid = info_array[1]
163
+
164
+ if uuid.nil? || !uuid.match(uuid_regex)
165
+ nil
166
+ else
167
+ uuid
168
+ end
169
+ end
170
+
171
+ architecture_uuids = architecture_uuids.reject(&:nil?)
172
+
173
+ symbol_map_paths = architecture_uuids.map do |uuid|
174
+ "#{bcsymbolmaps_directory.shellescape}/#{uuid}.bcsymbolmap"
175
+ end
176
+
177
+ symbol_map_paths << bcsymbolmaps_directory.shellescape if symbol_map_paths.empty?
178
+
179
+ symbol_map_paths.each do |path|
180
+ command = []
181
+ command << "dsymutil"
182
+ command << "--symbol-map #{path}"
183
+ command << dsym.shellescape
184
+ Helper.backticks(command.join(" "), print: !Gym.config[:silent])
185
+ end
158
186
  end
159
187
  end
160
188
 
@@ -11,6 +11,7 @@ module Match
11
11
 
12
12
  arguments = FastlaneCore::Configuration.create(Cert::Options.available_options, {
13
13
  development: params[:type] == "development",
14
+ generate_apple_certs: params[:generate_apple_certs],
14
15
  output_path: output_path,
15
16
  force: true, # we don't need a certificate without its private key, we only care about a new certificate
16
17
  username: params[:username],
@@ -72,7 +72,7 @@ module Match
72
72
  cert.certificate_content == cert_contents_base_64
73
73
  end
74
74
 
75
- UI.error!("This certificate cannot be imported - the certificate contents did not match with any available on the Developer Portal") if matching_cert.nil?
75
+ UI.user_error!("This certificate cannot be imported - the certificate contents did not match with any available on the Developer Portal") if matching_cert.nil?
76
76
 
77
77
  # Make dir if doesn't exist
78
78
  FileUtils.mkdir_p(output_dir)
@@ -1,8 +1,10 @@
1
1
  require 'fastlane_core/helper'
2
+ require 'fastlane/boolean'
2
3
 
3
4
  module Match
4
5
  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
5
6
  UI = FastlaneCore::UI
7
+ Boolean = Fastlane::Boolean
6
8
  ROOT = Pathname.new(File.expand_path('../../..', __FILE__))
7
9
  DESCRIPTION = "Easily sync your certificates and profiles across your team"
8
10
 
@@ -100,7 +100,7 @@ module Match
100
100
  prov_types = [:enterprise] if cert_type == :enterprise
101
101
 
102
102
  Spaceship.login(params[:username])
103
- Spaceship.select_team
103
+ Spaceship.select_team(team_id: params[:team_id], team_name: params[:team_name])
104
104
 
105
105
  if Spaceship.client.in_house? && (type == "distribution" || type == "enterprise")
106
106
  UI.error("---")
@@ -112,7 +112,7 @@ module Match
112
112
  UI.user_error!("Enterprise account nuke cancelled") unless UI.confirm("Do you really want to nuke your Enterprise account?")
113
113
  end
114
114
 
115
- self.certs = certificate_type(cert_type).all
115
+ self.certs = certificate_type(cert_type).flat_map(&:all)
116
116
  self.profiles = []
117
117
  prov_types.each do |prov_type|
118
118
  self.profiles += profile_type(prov_type).all
@@ -148,7 +148,7 @@ module Match
148
148
  rows = self.profiles.collect do |p|
149
149
  status = p.status == 'Active' ? p.status.green : p.status.red
150
150
 
151
- # Expires is somtimes nil
151
+ # Expires is sometimes nil
152
152
  expires = p.expires ? p.expires.strftime("%Y-%m-%d") : nil
153
153
  [p.name, p.id, status, p.type, expires]
154
154
  end
@@ -241,9 +241,9 @@ module Match
241
241
  # The kind of certificate we're interested in
242
242
  def certificate_type(type)
243
243
  {
244
- distribution: Spaceship.certificate.production,
245
- development: Spaceship.certificate.development,
246
- enterprise: Spaceship.certificate.in_house
244
+ distribution: [Spaceship.certificate.production, Spaceship.certificate.apple_distribution],
245
+ development: [Spaceship.certificate.development, Spaceship.certificate.apple_development],
246
+ enterprise: [Spaceship.certificate.in_house]
247
247
  }[type] ||= raise "Unknown type '#{type}'"
248
248
  end
249
249
 
@@ -32,6 +32,17 @@ module Match
32
32
  description: "Only fetch existing certificates and profiles, don't generate new ones",
33
33
  is_string: false,
34
34
  default_value: false),
35
+ FastlaneCore::ConfigItem.new(key: :generate_apple_certs,
36
+ env_name: "MATCH_GENERATE_APPLE_CERTS",
37
+ description: "Create a certificate type for Xcode 11 and later (Apple Development or Apple Distribution)",
38
+ type: Boolean,
39
+ default_value: FastlaneCore::Helper.mac? && FastlaneCore::Helper.xcode_at_least?('11'),
40
+ default_value_dynamic: true),
41
+ FastlaneCore::ConfigItem.new(key: :skip_provisioning_profiles,
42
+ env_name: "MATCH_SKIP_PROVISIONING_PROFILES",
43
+ description: "Skip syncing provisioning profiles",
44
+ is_string: false,
45
+ default_value: false),
35
46
 
36
47
  # app
37
48
  FastlaneCore::ConfigItem.new(key: :app_identifier,
@@ -110,6 +121,12 @@ module Match
110
121
  description: "Clone just the branch specified, instead of the whole repo. This requires that the branch already exists. Otherwise the command will fail",
111
122
  is_string: false,
112
123
  default_value: false),
124
+ FastlaneCore::ConfigItem.new(key: :git_basic_authorization,
125
+ env_name: "MATCH_GIT_BASIC_AUTHORIZATION",
126
+ sensitive: true,
127
+ description: "Use a basic authorization header to access the git repo (e.g.: access via HTTPS, GitHub Actions, etc), usually a string in Base64",
128
+ optional: true,
129
+ default_value: nil),
113
130
 
114
131
  # Storage: Google Cloud
115
132
  FastlaneCore::ConfigItem.new(key: :google_cloud_bucket_name,
@@ -37,13 +37,15 @@ module Match
37
37
  git_full_name: params[:git_full_name],
38
38
  git_user_email: params[:git_user_email],
39
39
  clone_branch_directly: params[:clone_branch_directly],
40
+ git_basic_authorization: params[:git_basic_authorization],
40
41
  type: params[:type].to_s,
42
+ generate_apple_certs: params[:generate_apple_certs],
41
43
  platform: params[:platform].to_s,
42
44
  google_cloud_bucket_name: params[:google_cloud_bucket_name].to_s,
43
45
  google_cloud_keys_file: params[:google_cloud_keys_file].to_s,
44
46
  google_cloud_project_id: params[:google_cloud_project_id].to_s,
45
47
  readonly: params[:readonly],
46
- username: params[:username],
48
+ username: params[:readonly] ? nil : params[:username], # only pass username if not readonly
47
49
  team_id: params[:team_id],
48
50
  team_name: params[:team_name]
49
51
  })
@@ -85,12 +87,14 @@ module Match
85
87
  spaceship.certificate_exists(username: params[:username], certificate_id: cert_id) if spaceship
86
88
 
87
89
  # Provisioning Profiles
88
- app_identifiers.each do |app_identifier|
89
- loop do
90
- break if fetch_provisioning_profile(params: params,
91
- certificate_id: cert_id,
92
- app_identifier: app_identifier,
93
- working_directory: storage.working_directory)
90
+ unless params[:skip_provisioning_profiles]
91
+ app_identifiers.each do |app_identifier|
92
+ loop do
93
+ break if fetch_provisioning_profile(params: params,
94
+ certificate_id: cert_id,
95
+ app_identifier: app_identifier,
96
+ working_directory: storage.working_directory)
97
+ end
94
98
  end
95
99
  end
96
100
 
@@ -156,7 +160,7 @@ module Match
156
160
  UI.message("Installing certificate...")
157
161
 
158
162
  # Only looking for cert in "custom" (non login.keychain) keychain
159
- # Doing this for backwards compatability
163
+ # Doing this for backwards compatibility
160
164
  keychain_name = params[:keychain_name] == "login.keychain" ? nil : params[:keychain_name]
161
165
 
162
166
  if FastlaneCore::CertChecker.installed?(cert_path, in_keychain: keychain_name)
@@ -217,7 +221,7 @@ module Match
217
221
  end
218
222
  end
219
223
 
220
- if profile.nil? || params[:force]
224
+ if profile.nil? || force
221
225
  if params[:readonly]
222
226
  UI.error("No matching provisioning profiles found for '#{profile_name}'")
223
227
  UI.error("A new one cannot be created because you enabled `readonly`")
@@ -17,6 +17,7 @@ module Match
17
17
  attr_accessor :clone_branch_directly
18
18
  attr_accessor :type
19
19
  attr_accessor :platform
20
+ attr_accessor :git_basic_authorization
20
21
 
21
22
  def self.configure(params)
22
23
  return self.new(
@@ -28,7 +29,8 @@ module Match
28
29
  branch: params[:git_branch],
29
30
  git_full_name: params[:git_full_name],
30
31
  git_user_email: params[:git_user_email],
31
- clone_branch_directly: params[:clone_branch_directly]
32
+ clone_branch_directly: params[:clone_branch_directly],
33
+ git_basic_authorization: params[:git_basic_authorization]
32
34
  )
33
35
  end
34
36
 
@@ -40,7 +42,8 @@ module Match
40
42
  branch: "master",
41
43
  git_full_name: nil,
42
44
  git_user_email: nil,
43
- clone_branch_directly: false)
45
+ clone_branch_directly: false,
46
+ git_basic_authorization: nil)
44
47
  self.git_url = git_url
45
48
  self.shallow_clone = shallow_clone
46
49
  self.skip_docs = skip_docs
@@ -48,6 +51,7 @@ module Match
48
51
  self.git_full_name = git_full_name
49
52
  self.git_user_email = git_user_email
50
53
  self.clone_branch_directly = clone_branch_directly
54
+ self.git_basic_authorization = git_basic_authorization
51
55
 
52
56
  self.type = type if type
53
57
  self.platform = platform if platform
@@ -65,6 +69,8 @@ module Match
65
69
  self.working_directory = Dir.mktmpdir
66
70
 
67
71
  command = "git clone #{self.git_url.shellescape} #{self.working_directory.shellescape}"
72
+ command << " -c http.extraheader='AUTHORIZATION: basic #{self.git_basic_authorization}'" unless self.git_basic_authorization.nil?
73
+
68
74
  if self.shallow_clone
69
75
  command << " --depth 1 --no-single-branch"
70
76
  elsif self.clone_branch_directly
@@ -97,6 +97,7 @@ module Match
97
97
  end
98
98
 
99
99
  ensure_bucket_is_selected
100
+ check_bucket_permissions
100
101
  end
101
102
 
102
103
  def currently_used_team_id
@@ -234,74 +235,122 @@ module Match
234
235
  end
235
236
  end
236
237
 
237
- # User doesn't seem to have provided a keys file.
238
- UI.message("Looks like you don't have a Google Cloud #{DEFAULT_KEYS_FILE_NAME.cyan} file")
239
- UI.message("If you have one, make sure to put it into the '#{Dir.pwd}' directory and call it '#{DEFAULT_KEYS_FILE_NAME.cyan}'")
238
+ # User doesn't seem to have provided a keys file
239
+ UI.message("Looks like you don't have a Google Cloud #{DEFAULT_KEYS_FILE_NAME.cyan} file yet.")
240
+ UI.message("If you have one, make sure to put it into the '#{Dir.pwd}' directory and call it '#{DEFAULT_KEYS_FILE_NAME.cyan}'.")
240
241
  unless UI.confirm("Do you want fastlane to help you to create a #{DEFAULT_KEYS_FILE_NAME} file?")
241
242
  UI.user_error!("Process stopped, run fastlane again to start things up again")
242
243
  end
243
244
 
244
- UI.message("fastlane will help you create a keys file. First, open the following website")
245
+ UI.message("fastlane will help you create a keys file. Start by opening the following website:")
245
246
  UI.message("")
246
247
  UI.message("\t\thttps://console.cloud.google.com".cyan)
247
248
  UI.message("")
248
- UI.input("Press enter once you're logged in")
249
+ UI.input("Press [Enter] once you're logged in")
249
250
 
250
- UI.message("Now it's time to generate a new JSON auth file for fastlane to access Google Cloud")
251
251
  UI.message("First, switch to the Google Cloud project you want to use.")
252
- UI.message("If you don't have one yet, create a new one and switch to it")
252
+ UI.message("If you don't have one yet, create a new one and switch to it.")
253
253
  UI.message("")
254
- UI.message("\t\thttps://console.cloud.google.com/apis/credentials".cyan)
254
+ UI.message("\t\thttps://console.cloud.google.com/projectcreate".cyan)
255
255
  UI.message("")
256
- UI.input("Ensure the right project is selected on top of the page and confirm with enter")
256
+ UI.input("Press [Enter] once you selected the right project")
257
257
 
258
- UI.message("Now create a new JSON auth file by clicking on")
258
+ UI.message("Next fastlane will show you the steps to create a keys file.")
259
+ UI.message("For this it might be useful to switch the Google Cloud interface to English.")
260
+ UI.message("Append " + "&hl=en".cyan + " to the URL and the interface should be in English.")
261
+ UI.input("Press [Enter] to continue")
262
+
263
+ UI.message("Now it's time to generate a new JSON auth file for fastlane to access Google Cloud Storage:")
259
264
  UI.message("")
260
- UI.message("\t\t 1. Create credentials".cyan)
261
- UI.message("\t\t 2. Service account key".cyan)
262
- UI.message("\t\t 3. App Engine default service account".cyan)
263
- UI.message("\t\t 4. JSON".cyan)
264
- UI.message("\t\t 5. Create".cyan)
265
+ UI.message("\t\t 1. From the side menu choose 'APIs & Services' and then 'Credentials'".cyan)
266
+ UI.message("\t\t 2. Click 'Create credentials'".cyan)
267
+ UI.message("\t\t 3. Choose 'Service account key'".cyan)
268
+ UI.message("\t\t 4. Select 'New service account'".cyan)
269
+ UI.message("\t\t 5. Enter a name and ID for the service account".cyan)
270
+ UI.message("\t\t 6. Don't give the service account a role just yet!".cyan)
271
+ UI.message("\t\t 7. Make sure the key type is set to 'JSON'".cyan)
272
+ UI.message("\t\t 8. Click 'Create'".cyan)
265
273
  UI.message("")
266
- UI.input("Confirm with enter once you created and download the JSON file")
274
+ UI.input("Confirm with [Enter] once you created and downloaded the JSON file")
267
275
 
268
276
  UI.message("Copy the file to the current directory (#{Dir.pwd})")
269
277
  UI.message("and rename it to `#{DEFAULT_KEYS_FILE_NAME.cyan}`")
270
278
  UI.message("")
271
- UI.input("Confirm with enter")
279
+ UI.input("Confirm with [Enter]")
272
280
 
273
281
  until File.exist?(DEFAULT_KEYS_FILE_NAME)
274
282
  UI.message("Make sure to place the file in '#{Dir.pwd.cyan}' and name it '#{DEFAULT_KEYS_FILE_NAME.cyan}'")
275
- UI.input("Confirm with enter")
283
+ UI.message("")
284
+ UI.input("Confirm with [Enter]")
276
285
  end
277
286
 
278
287
  UI.important("Please never add the #{DEFAULT_KEYS_FILE_NAME.cyan} file in version control.")
279
- UI.important("Instead please add the file to your .gitignore")
280
- UI.input("Confirm with enter")
288
+ UI.important("Instead please add the file to your `.gitignore` file")
289
+ UI.message("")
290
+ UI.input("Confirm with [Enter]")
281
291
 
282
292
  return DEFAULT_KEYS_FILE_NAME
283
293
  end
284
294
 
285
295
  def ensure_bucket_is_selected
286
- # In case the user didn't provide a bucket name yet, they will
287
- # be asked to provide one here
296
+ created_bucket = UI.confirm("Did you already create a Google Cloud Storage bucket?")
288
297
  while self.bucket_name.to_s.length == 0
289
- # Have a nice selection of the available buckets here
290
- # This can only happen after we went through auth of Google Cloud
291
- available_bucket_identifiers = self.gc_storage.buckets.collect(&:id)
292
- if available_bucket_identifiers.count > 0
293
- @bucket_name = UI.select("What Google Cloud Storage bucket do you want to use? (you can define it using the `google_cloud_bucket_name` key)", available_bucket_identifiers)
294
- else
295
- UI.error("Looks like your Google Cloud account for the project ID '#{self.google_cloud_project_id}' doesn't")
296
- UI.error("have any available storage buckets yet. Please visit the following URL")
298
+ unless created_bucket
299
+ UI.message("Create a bucket at the following URL:")
297
300
  UI.message("")
298
301
  UI.message("\t\thttps://console.cloud.google.com/storage/browser".cyan)
299
302
  UI.message("")
300
- UI.message("and make sure to have the right project selected on top of the page")
301
- UI.message("click on " + "Create Bucket".cyan + ", choose a name and confirm")
303
+ UI.message("Make sure to select the right project at the top of the page!")
304
+ UI.message("")
305
+ UI.message("\t\t 1. Click 'Create bucket'".cyan)
306
+ UI.message("\t\t 2. Enter a unique name".cyan)
307
+ UI.message("\t\t 3. Select a geographic location for your bucket".cyan)
308
+ UI.message("\t\t 4. Make sure the storage class is set to 'Standard'".cyan)
309
+ UI.message("\t\t 5. Click 'Create' to create the bucket".cyan)
302
310
  UI.message("")
303
- UI.input("Once you're finished, please confirm with enter")
311
+ UI.input("Press [Enter] once you created a bucket")
312
+ end
313
+ bucket_name = UI.input("Enter the name of your bucket: ")
314
+
315
+ # Verify if the bucket exists
316
+ begin
317
+ bucket_exists = !self.gc_storage.bucket(bucket_name).nil?
318
+ rescue Google::Cloud::PermissionDeniedError
319
+ bucket_exists = true
320
+ end
321
+ created_bucket = bucket_exists
322
+ if bucket_exists
323
+ @bucket_name = bucket_name
324
+ else
325
+ UI.error("It looks like the bucket '#{bucket_name}' doesn't exist. Make sure to create it first.")
326
+ end
327
+ end
328
+ end
329
+
330
+ def check_bucket_permissions
331
+ bucket = nil
332
+ while bucket.nil?
333
+ begin
334
+ bucket = self.gc_storage.bucket(self.bucket_name)
335
+ rescue Google::Cloud::PermissionDeniedError
336
+ bucket = nil
304
337
  end
338
+ return if bucket.nil? == false
339
+ UI.error("Looks like your Google Cloud account for the project ID '#{self.google_cloud_project_id}' doesn't")
340
+ UI.error("have access to the storage bucket '#{self.bucket_name}'. Please visit the following URL:")
341
+ UI.message("")
342
+ UI.message("\t\thttps://console.cloud.google.com/storage/browser".cyan)
343
+ UI.message("")
344
+ UI.message("You need to give your account the correct permissions:")
345
+ UI.message("")
346
+ UI.message("\t\t 1. Click on your bucket to open it".cyan)
347
+ UI.message("\t\t 2. Click 'Permissions'".cyan)
348
+ UI.message("\t\t 3. Click 'Add members'".cyan)
349
+ UI.message("\t\t 4. Enter the email of your service account".cyan)
350
+ UI.message("\t\t 5. Set the role to 'Storage Admin'".cyan)
351
+ UI.message("\t\t 6. Click 'Save'".cyan)
352
+ UI.message("")
353
+ UI.input("Confirm with [Enter] once you're finished")
305
354
  end
306
355
  end
307
356
  end
@@ -23,7 +23,7 @@ module Match
23
23
 
24
24
  # Call this method after creating a new object to configure
25
25
  # the given Storage object. This method will take
26
- # different paramters depending on specific class being used
26
+ # different parameters depending on specific class being used
27
27
  def configure
28
28
  not_implemented(__method__)
29
29
  end
@@ -229,7 +229,13 @@ module Produce
229
229
  UI.message("\tPush Notifications")
230
230
 
231
231
  if on
232
- app.update_service(Spaceship.app_service.push_notification.on)
232
+ # Don't enable push notifications if already enabled
233
+ # Enabling push notifications when already on revokes certs
234
+ # https://github.com/fastlane/fastlane/issues/15315
235
+ # https://github.com/fastlane/fastlane/issues/8883
236
+ unless app.details.enable_services.include?("push")
237
+ app.update_service(Spaceship.app_service.push_notification.on)
238
+ end
233
239
  else
234
240
  app.update_service(Spaceship.app_service.push_notification.off)
235
241
  end
@@ -213,7 +213,7 @@ module Scan
213
213
  env_name: "SCAN_SUPPRESS_XCODE_OUTPUT",
214
214
  description: "Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path",
215
215
  optional: true,
216
- is_string: false),
216
+ type: Boolean),
217
217
  FastlaneCore::ConfigItem.new(key: :formatter,
218
218
  short_option: "-n",
219
219
  env_name: "SCAN_FORMATTER",