fastlane-plugin-stream_actions 0.3.32 → 0.3.34

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: afe84ad18148bb79774a7d5ac78905012e87ac95d4607c230e930d77ea41c5ce
4
- data.tar.gz: 24155a5e094ec8de3a637f5476c2d13241f7b1f4c904c7508667e845fab92ebb
3
+ metadata.gz: 551be67fcf9e6c22cd8cc6fbf25d0c3ca45c2639105532f562de8d1bef8ed46c
4
+ data.tar.gz: 5b89195b7bfd9ee84a1dc4c0156bb14efff2108b9cb1c02c74180ba33f86baf2
5
5
  SHA512:
6
- metadata.gz: c7f10d1da6cbc34b35a4d2a2907ec9814119cea25509e559c73ca336a09dbf40af0360d8ee808c681a55a5e6c5b1605830a20ce00479cf2b84692e5d15a03717
7
- data.tar.gz: 6d50c11db498c213b5cb20c95fa30e788db197e54dd36be3890f4aecfdcabad34d8ac2b6bf9bfa0909ae14a08c4f6422c67f509f6709741a688fef923389be10
6
+ metadata.gz: d9d2413d457f6ac7981ea22e6d9ab68934c0ab00b7cfa29fcd860d8d02f61a7cf91757ca7ff13f418f46ffb7f8e595a844c48ae546efca348b4b193da373a1ce
7
+ data.tar.gz: d9ef89c4552f0fc3a2a3a2db2cabb0523ff0355488af8a146fe75e531649611f17772fcdec57719604b1207a64c4c1e2bc7c44d08c27198543bf610fcd472771
@@ -31,7 +31,7 @@ module Fastlane
31
31
  end
32
32
 
33
33
  def self.ensure_everything_is_set_up(params)
34
- other_action.ensure_git_branch(branch: 'main')
34
+ other_action.ensure_git_branch(branch: 'main') unless params[:skip_branch_check]
35
35
  other_action.ensure_git_status_clean unless params[:skip_git_status_check]
36
36
  end
37
37
 
@@ -88,6 +88,12 @@ module Fastlane
88
88
  key: :github_token,
89
89
  description: 'GITHUB_TOKEN environment variable'
90
90
  ),
91
+ FastlaneCore::ConfigItem.new(
92
+ key: :skip_branch_check,
93
+ description: 'Skip branch check',
94
+ is_string: false,
95
+ optional: true
96
+ ),
91
97
  FastlaneCore::ConfigItem.new(
92
98
  key: :skip_git_status_check,
93
99
  description: 'Skip git status check',
@@ -23,7 +23,7 @@ module Fastlane
23
23
  scheme: params[:app_target],
24
24
  configuration: params[:configuration],
25
25
  export_method: params[:export_method],
26
- export_options: params[:export_options],
26
+ export_options: params[:export_options] || params[:export_options_plist],
27
27
  clean: true,
28
28
  include_symbols: true,
29
29
  output_directory: params[:output_directory],
@@ -122,10 +122,16 @@ module Fastlane
122
122
  default_value: 'app-store'
123
123
  ),
124
124
  FastlaneCore::ConfigItem.new(
125
- key: :export_options,
126
- description: 'We have to pass manually since `gym` detects profiles from `match` and that breaks it',
125
+ key: :export_options_plist,
126
+ description: 'Path to plist file with export options. We have to pass manually since `gym` detects profiles from `match` and that breaks it',
127
127
  default_value: './fastlane/testflight_export_options.plist'
128
128
  ),
129
+ FastlaneCore::ConfigItem.new(
130
+ key: :export_options,
131
+ description: 'Hash with export options. We have to pass manually since `gym` detects profiles from `match` and that breaks it',
132
+ is_string: false,
133
+ optional: true
134
+ ),
129
135
  FastlaneCore::ConfigItem.new(
130
136
  key: :output_directory,
131
137
  description: 'Output directory for the build',
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.32'
3
+ VERSION = '0.3.34'
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.32
4
+ version: 0.3.34
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-25 00:00:00.000000000 Z
11
+ date: 2024-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list