fastlane-plugin-stream_actions 0.3.31 → 0.3.33
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 055f468bc9af31c8e6ffe391b6f28eec70f6fc6596d965b5d3012b173bc9b1ae
|
|
4
|
+
data.tar.gz: 1f419f80ee7a3183f9c9ff219d619accba13f846de35b68f471352ef873bbfd2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c73923ad3e698f1409183b67805d044308b7f73c0a0c9b3201783cf441863e4e200195571c5574eb1e9dc3ba6d506164db4ebed0c4e44997d24b95de749f394c
|
|
7
|
+
data.tar.gz: 314cf4b5e18d8fe2db94ca18fda15c4ec0ed6e6c419ae76979b996bd1a2735270e991bf17c178912e3f83ae7f0683ee17625d18220d107535c9bb94ced49790a
|
|
@@ -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:
|
|
26
|
-
export_options: params[:
|
|
25
|
+
export_method: params[:export_method],
|
|
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],
|
|
@@ -117,10 +117,21 @@ module Fastlane
|
|
|
117
117
|
end
|
|
118
118
|
),
|
|
119
119
|
FastlaneCore::ConfigItem.new(
|
|
120
|
-
key: :
|
|
121
|
-
description: '
|
|
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_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',
|
|
122
127
|
default_value: './fastlane/testflight_export_options.plist'
|
|
123
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
|
+
),
|
|
124
135
|
FastlaneCore::ConfigItem.new(
|
|
125
136
|
key: :output_directory,
|
|
126
137
|
description: 'Output directory for the build',
|
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.
|
|
4
|
+
version: 0.3.33
|
|
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-
|
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xctest_list
|