fastlane-plugin-stream_actions 0.3.30 → 0.3.32

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: a93952d6963df69d20fd5e400d692a1d65ec135dfc60a42b7d3be2b8eb75c551
4
- data.tar.gz: 3561527ab1ed1c56cbbaf14d5cc00394f3dc51d9d611743bbda1021593aa725a
3
+ metadata.gz: afe84ad18148bb79774a7d5ac78905012e87ac95d4607c230e930d77ea41c5ce
4
+ data.tar.gz: 24155a5e094ec8de3a637f5476c2d13241f7b1f4c904c7508667e845fab92ebb
5
5
  SHA512:
6
- metadata.gz: 979ba7c63874079c067a5f70df3a5b8311ca36630ad9a5873f5dd958c2ad1335ab579ab22e4d21f2adb9c68508149e9f5ce2aa340cb869fd7896b49a7f5d059e
7
- data.tar.gz: 6b85b215b1b167e150b2354ffc5a41cb397099154c849258168d847d9c25b97426de10b5a3c07f42596a5464bb30a321a0237885728793d27cddda28ea42687c
6
+ metadata.gz: c7f10d1da6cbc34b35a4d2a2907ec9814119cea25509e559c73ca336a09dbf40af0360d8ee808c681a55a5e6c5b1605830a20ce00479cf2b84692e5d15a03717
7
+ data.tar.gz: 6d50c11db498c213b5cb20c95fa30e788db197e54dd36be3890f4aecfdcabad34d8ac2b6bf9bfa0909ae14a08c4f6422c67f509f6709741a688fef923389be10
@@ -2,11 +2,6 @@ module Fastlane
2
2
  module Actions
3
3
  class PublishIosSdkAction < Action
4
4
  def self.run(params)
5
- podspecs = []
6
- (params[:podspec_names] || params[:sdk_names]).each do |sdk|
7
- podspecs << (sdk.include?('.podspec') ? sdk : "#{sdk}.podspec")
8
- end
9
-
10
5
  version_number = params[:version]
11
6
 
12
7
  ensure_everything_is_set_up(params)
@@ -24,7 +19,13 @@ module Fastlane
24
19
  upload_assets: params[:upload_assets]
25
20
  )
26
21
 
27
- podspecs.each { |podspec| other_action.pod_push_safely(podspec: podspec) }
22
+ unless params[:skip_pods]
23
+ podspecs = []
24
+ (params[:podspec_names] || params[:sdk_names]).each do |sdk|
25
+ podspecs << (sdk.include?('.podspec') ? sdk : "#{sdk}.podspec")
26
+ end
27
+ podspecs.each { |podspec| other_action.pod_push_safely(podspec: podspec) }
28
+ end
28
29
 
29
30
  UI.success("Github release v#{version_number} was created, please visit #{release_details['html_url']} to see it! 🚢")
30
31
  end
@@ -64,6 +65,13 @@ module Fastlane
64
65
  UI.user_error!("SDK names array has to be specified") unless sdks.kind_of?(Array) && sdks.size.positive?
65
66
  end
66
67
  ),
68
+ FastlaneCore::ConfigItem.new(
69
+ key: :skip_pods,
70
+ description: 'Skip release to CocoaPods?',
71
+ is_string: false,
72
+ optional: true,
73
+ default_value: false
74
+ ),
67
75
  FastlaneCore::ConfigItem.new(
68
76
  key: :podspec_names,
69
77
  description: 'Podspec names to release',
@@ -22,8 +22,8 @@ module Fastlane
22
22
  project: params[:xcode_project],
23
23
  scheme: params[:app_target],
24
24
  configuration: params[:configuration],
25
- export_method: 'app-store',
26
- export_options: params[:testflight_export_options],
25
+ export_method: params[:export_method],
26
+ export_options: params[:export_options],
27
27
  clean: true,
28
28
  include_symbols: true,
29
29
  output_directory: params[:output_directory],
@@ -117,7 +117,12 @@ module Fastlane
117
117
  end
118
118
  ),
119
119
  FastlaneCore::ConfigItem.new(
120
- key: :testflight_export_options,
120
+ key: :export_method,
121
+ description: 'Method used to export the archive',
122
+ default_value: 'app-store'
123
+ ),
124
+ FastlaneCore::ConfigItem.new(
125
+ key: :export_options,
121
126
  description: 'We have to pass manually since `gym` detects profiles from `match` and that breaks it',
122
127
  default_value: './fastlane/testflight_export_options.plist'
123
128
  ),
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.30'
3
+ VERSION = '0.3.32'
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.30
4
+ version: 0.3.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-17 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list