fastlane-plugin-altool 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/fastlane/plugin/altool/actions/altool_action.rb +4 -4
- data/lib/fastlane/plugin/altool/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e14ec63dda99ff231d55c837dab389c1ba1e7836
|
4
|
+
data.tar.gz: d4318584ff1b03f502c51ec9f8233ddbc1aa4735
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86fc446a237e42e8700c9e385fad10d200f3936501c8596549463e29c2983c9d7d2d5103a57ea1146cb8d6f6115ab2446a478ebbaea8515ae903b0cf1b7d600f
|
7
|
+
data.tar.gz: cf456bd7c23fa33b29e953dc196395a0a04a82089e62896278bbcacd7093db85c3bec0cc5adbce5612756ddd65e6fa97067e0c65f609de0a0adef3d256b0785f
|
data/README.md
CHANGED
@@ -20,7 +20,7 @@ Currently Fastlane deliver uses iTMSTransporter to upload an ipa files to iTunes
|
|
20
20
|
|
21
21
|
This plugin can be used for uploading generated ipa file using Gym to iTunes Connect.
|
22
22
|
|
23
|
-
This plugin assume that, you already have that Fastlane setup and your details are configured as ENV variables in FASTLANE_USER and FASTLANE_PASSWORD
|
23
|
+
This plugin assume that, you already have that Fastlane setup and your details are configured as ENV variables in FASTLANE_USER and FASTLANE_PASSWORD by default.
|
24
24
|
|
25
25
|
|
26
26
|
## Example
|
@@ -30,8 +30,8 @@ You can configure this plaugin using
|
|
30
30
|
```
|
31
31
|
lane :upload_ipa_altool do
|
32
32
|
altool(
|
33
|
-
|
34
|
-
altool_password: ENV["FASTLANE_PASSWORD"]
|
33
|
+
altool_username: ENV["FASTLANE_USER"],
|
34
|
+
altool_password: ENV["FASTLANE_PASSWORD"],
|
35
35
|
altool_app_type: "ios",
|
36
36
|
altool_ipa_path: "./build/Your-ipa.ipa",
|
37
37
|
altool_output_format: "xml",
|
@@ -12,7 +12,7 @@ module Fastlane
|
|
12
12
|
|
13
13
|
altool_app_type = params[:altool_app_type]
|
14
14
|
altool_ipa_path = params[:altool_ipa_path]
|
15
|
-
|
15
|
+
altool_username = params[:altool_username]
|
16
16
|
altool_password = params[:altool_password]
|
17
17
|
altool_output_format = params[:altool_output_format]
|
18
18
|
|
@@ -24,7 +24,7 @@ module Fastlane
|
|
24
24
|
'-f',
|
25
25
|
altool_ipa_path,
|
26
26
|
'-u',
|
27
|
-
|
27
|
+
altool_username,
|
28
28
|
'-p',
|
29
29
|
altool_password,
|
30
30
|
'--output-format',
|
@@ -106,8 +106,8 @@ module Fastlane
|
|
106
106
|
|
107
107
|
def self.example_code
|
108
108
|
[' altool(
|
109
|
-
|
110
|
-
altool_password: ENV["FASTLANE_PASSWORD"]
|
109
|
+
altool_username: ENV["FASTLANE_USER"],
|
110
|
+
altool_password: ENV["FASTLANE_PASSWORD"],
|
111
111
|
altool_app_type: "ios",
|
112
112
|
altool_ipa_path: "./build/Your-ipa.ipa",
|
113
113
|
altool_output_format: "xml",
|