fastlane-plugin-ionic_capacitor 0.2.0 → 0.5.0
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: f4994e05614817f7538108997fbd288c7e6553d30d0aa88a59b11346da3845e1
|
|
4
|
+
data.tar.gz: d580040d13f0e640175bf77c04130d338b4e747d6baf9e1665c5cfe835d2d8a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43e7ff88729669e0c0ffa44198b87ae13513760a08f6b8e973e4a7af466c1855d872fde6b8352ff022bf9f505b31f6419b363d02f0c85b300f68f08cd97ef293
|
|
7
|
+
data.tar.gz: 4c32ecf05cb584177a36166a602a4db920f5376cd8a8823aecb2d240ce0afa512768246659e903cefcd848ef450fa30e4502d38e57837857655c869d1c475fd2
|
|
@@ -72,7 +72,7 @@ module Fastlane
|
|
|
72
72
|
params[:type] = 'ad-hoc'
|
|
73
73
|
end
|
|
74
74
|
if params[:type] == 'appstore'
|
|
75
|
-
params[:type] = 'app-store'
|
|
75
|
+
params[:type] = 'app-store-connect'
|
|
76
76
|
end
|
|
77
77
|
|
|
78
78
|
return self.get_platform_args(params, IOS_ARGS_MAP)
|
|
@@ -158,11 +158,14 @@ module Fastlane
|
|
|
158
158
|
.last
|
|
159
159
|
&.split
|
|
160
160
|
&.last
|
|
161
|
+
|
|
162
|
+
workspace_or_project = File.exist?(params[:workspace]) ? "-workspace #{params[:workspace]}" : "-project #{params[:project]}"
|
|
163
|
+
|
|
161
164
|
cmd = [
|
|
162
165
|
'/usr/bin/xcodebuild',
|
|
163
166
|
"-sdk #{latest_sdk}",
|
|
164
167
|
"-configuration #{configuration}",
|
|
165
|
-
"
|
|
168
|
+
"#{workspace_or_project}",
|
|
166
169
|
"-scheme #{params[:scheme]}",
|
|
167
170
|
'archive',
|
|
168
171
|
"-archivePath ./#{params[:scheme]}",
|
|
@@ -300,7 +303,7 @@ module Fastlane
|
|
|
300
303
|
is_string: true,
|
|
301
304
|
default_value: 'appstore',
|
|
302
305
|
verify_block: proc do |value|
|
|
303
|
-
UI.user_error!("Valid options are development, enterprise, adhoc, and appstore.") unless ['development', 'enterprise', 'adhoc', 'appstore', 'ad-hoc', 'app-store'].include? value
|
|
306
|
+
UI.user_error!("Valid options are development, enterprise, adhoc, and appstore.") unless ['development', 'enterprise', 'adhoc', 'appstore', 'ad-hoc', 'app-store', 'app-store-connect'].include? value
|
|
304
307
|
end
|
|
305
308
|
),
|
|
306
309
|
FastlaneCore::ConfigItem.new(
|
|
@@ -334,6 +337,13 @@ module Fastlane
|
|
|
334
337
|
is_string: true,
|
|
335
338
|
default_value: 'ios/App/App.xcworkspace'
|
|
336
339
|
),
|
|
340
|
+
FastlaneCore::ConfigItem.new(
|
|
341
|
+
key: :project,
|
|
342
|
+
env_name: "CAPACITOR_IOS_PROJECT",
|
|
343
|
+
description: "The xcode project file path. If specified, this will be used instead of workspace or when no workspace is found",
|
|
344
|
+
is_string: true,
|
|
345
|
+
default_value: 'ios/App/App.xcodeproj'
|
|
346
|
+
),
|
|
337
347
|
FastlaneCore::ConfigItem.new(
|
|
338
348
|
key: :provisioning_profile,
|
|
339
349
|
env_name: "CAPACITOR_IOS_PROVISIONING_PROFILE",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-ionic_capacitor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ThatzOkay
|
|
@@ -100,10 +100,10 @@ extra_rdoc_files: []
|
|
|
100
100
|
files:
|
|
101
101
|
- LICENSE
|
|
102
102
|
- README.md
|
|
103
|
-
- lib/fastlane/plugin/ionic.rb
|
|
104
|
-
- lib/fastlane/plugin/ionic/actions/ionic_action.rb
|
|
103
|
+
- lib/fastlane/plugin/ionic/actions/ionic_capacitor_action.rb
|
|
105
104
|
- lib/fastlane/plugin/ionic/helper/ionic_helper.rb
|
|
106
105
|
- lib/fastlane/plugin/ionic/version.rb
|
|
106
|
+
- lib/fastlane/plugin/ionic_capacitor.rb
|
|
107
107
|
homepage: https://github.com/ThatzOkay/fastlane-plugin-ionic-capacitor
|
|
108
108
|
licenses:
|
|
109
109
|
- MIT
|
|
File without changes
|