fastlane-plugin-stream_actions 0.3.3 → 0.3.4

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: '09e99fe9162cf2f2e5504601cb257329a35d3121b952b142d9765134fd05c8ca'
4
- data.tar.gz: 81c2868f9287640c4d900f2b05b1eafacdde21c29e999df61994366e2ef4848f
3
+ metadata.gz: fd5aae2b88383ae4c35e93d0ce7cd8bbdd656f7583fdd7ed421114f4e61e7802
4
+ data.tar.gz: 8ee9f58a39b2d0f9c9983c4683bde76a9a089a74c46de3597c1ad46931546ca4
5
5
  SHA512:
6
- metadata.gz: c06183ce1fd9e342677005f5e539f5008c2a4f24958bc3e49c5655b4d68bb752971df617d311efc7a76af972496102e323e16e2da3dbbccfe01915bccb8563c4
7
- data.tar.gz: d52f880891dba3d28f202dde9fcdc4a732122e8d81fbc18e270be4a2e72cc8b13e82bfb9e1ba3d5a1c8600edc551e0a3abee63c84456bd1cd3e7b9048b41247c
6
+ metadata.gz: c13c3d732da621c4368ab7403d6047c71227b7a83961cdbb6ae65de823cad8496999d36a1e7054c4c1403906dfba17aa9b063cb9c90880b496b67dbc00cc1a80
7
+ data.tar.gz: 4c48f7c92ee789b0d73bd1833c936c21bb99be008e0b30384ab4ce4c84d2cf6874a20d7133ab0159834052ee76b94dc26f29ae838c753830b22a615267e453b6
@@ -6,7 +6,11 @@ module Fastlane
6
6
  app_identifier: params[:app_identifier],
7
7
  api_key: params[:api_key]
8
8
  ) + 1
9
- other_action.increment_build_number_in_plist(build_number: build_number.to_s, target: params[:app_target])
9
+
10
+ targets = params[:extensions] << params[:app_target]
11
+ targets.each do |target|
12
+ other_action.increment_build_number_in_plist(build_number: build_number.to_s, target: target)
13
+ end
10
14
 
11
15
  other_action.gym(
12
16
  project: params[:xcode_project],
@@ -92,6 +96,12 @@ module Fastlane
92
96
  UI.user_error!('DemoApp target name has to be specified') if target.nil? || target.empty?
93
97
  end
94
98
  ),
99
+ FastlaneCore::ConfigItem.new(
100
+ key: :extensions,
101
+ description: 'Extensions/dependencies target names to bump build number',
102
+ is_string: false,
103
+ default_value: []
104
+ ),
95
105
  FastlaneCore::ConfigItem.new(
96
106
  key: :app_identifier,
97
107
  description: 'DemoApp bundle identifier',
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.3'
3
+ VERSION = '0.3.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-19 00:00:00.000000000 Z
11
+ date: 2023-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler