fastlane-plugin-stream_actions 0.3.20 → 0.3.22
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: ed3b41353ffbcab32a2de599979e486bb21b899550ff314956981d30ef9a2979
|
4
|
+
data.tar.gz: edd13a446412a7066bb1964bdf14ea976c807c0247de33c5a4ee0d0d0790a762
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fb3af174af50a23d3e0c184c44df63796c88f8b92d2ef3de79c531f8eb7f621cef3eb5d74a5584de06bf98061e4ea8612c2261055cd1ec9caf3eee98877ae04
|
7
|
+
data.tar.gz: 2706831f5a4ba5c2f13d17a768baf5bfa330a2c06a4a8f91356996dbf13b1c4410444b8d8b1f685e86d147e5d2bdeadfc653465fd6ceab46263e658f4bf74308
|
@@ -21,12 +21,13 @@ module Fastlane
|
|
21
21
|
other_action.gym(
|
22
22
|
project: params[:xcode_project],
|
23
23
|
scheme: params[:app_target],
|
24
|
-
configuration:
|
24
|
+
configuration: params[:configuration],
|
25
25
|
export_method: 'app-store',
|
26
26
|
export_options: params[:testflight_export_options],
|
27
27
|
clean: true,
|
28
28
|
include_symbols: true,
|
29
|
-
output_directory: params[:output_directory]
|
29
|
+
output_directory: params[:output_directory],
|
30
|
+
xcargs: params[:xcargs]
|
30
31
|
)
|
31
32
|
|
32
33
|
current_branch = ENV['BRANCH_NAME'] || other_action.git_branch
|
@@ -125,10 +126,20 @@ module Fastlane
|
|
125
126
|
description: 'Output directory for the build',
|
126
127
|
default_value: 'archives'
|
127
128
|
),
|
129
|
+
FastlaneCore::ConfigItem.new(
|
130
|
+
key: :xcargs,
|
131
|
+
description: 'Pass additional arguments to xcodebuild for the build phase'
|
132
|
+
),
|
128
133
|
FastlaneCore::ConfigItem.new(
|
129
134
|
env_name: 'GITHUB_PR_NUM',
|
130
135
|
key: :github_pr_num,
|
131
136
|
description: 'GitHub PR number'
|
137
|
+
),
|
138
|
+
FastlaneCore::ConfigItem.new(
|
139
|
+
env_name: 'GITHUB_PR_NUM',
|
140
|
+
key: :configuration,
|
141
|
+
description: 'Build configuration',
|
142
|
+
default_value: 'Release'
|
132
143
|
)
|
133
144
|
]
|
134
145
|
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.
|
4
|
+
version: 0.3.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GetStream
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: xctest_list
|