fastlane-plugin-applivery 2.2.1 → 2.2.2
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: dfa26aff66362f56dc480a7bd926f480f1862c7408ef3765a54e2ad994e0e197
|
|
4
|
+
data.tar.gz: 3e78dac7b40ad0d8d52b17addcade452e2e9c37fc1ce095e79e16696c69c668f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79946dcc62b82f09f909dd25b241c784d919512c66b58ba55a02d6191af343a1e01a911c32d0a2a1ba937f67fb457c123fb230cd867a6b3ffbc9aae25e65ce06
|
|
7
|
+
data.tar.gz: e54b6e47a3500d5195b1f184c43ec5cbe620e1b4ebe1de61fd12d5acf501163b248931ed4ec9de4a6e66ab368507b75a6de1db314ade179072914f3730bf6ab7
|
data/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Next you'll find a `lane` with two steps: `gym()` that will build the iOS App an
|
|
|
35
35
|
lane :applivery_ios do
|
|
36
36
|
gym(
|
|
37
37
|
scheme: "YOUR_APP_SCHEME", # Your App Scheme
|
|
38
|
-
export_method: 'enterprise') # Choose between: enterprise or ad-hoc
|
|
38
|
+
export_method: 'enterprise') # Choose between: enterprise or ad-hoc`
|
|
39
39
|
applivery(
|
|
40
40
|
app_token: "YOUR_APP_TOKEN") # Your Applivery App Token
|
|
41
41
|
end
|
|
@@ -48,7 +48,7 @@ Next you'll find a `lane` with two steps: `gradle()` that will build the Android
|
|
|
48
48
|
lane :applivery_android do
|
|
49
49
|
gradle(task: "assembleRelease")
|
|
50
50
|
applivery(
|
|
51
|
-
|
|
51
|
+
app_token: "YOUR_APP_TOKEN") # Your Applivery App Token
|
|
52
52
|
end
|
|
53
53
|
```
|
|
54
54
|
|
|
@@ -61,11 +61,12 @@ The above examples are the most simple configuration you can have but you can ad
|
|
|
61
61
|
|--------------------------|--------------------------------------|-----------|--------------|
|
|
62
62
|
| `app_token` | Applivery App Token | YES | string -> Available in the App Settings |
|
|
63
63
|
| `name` | Applivery Build name | NO | string-> i.e.: "RC 1.0" |
|
|
64
|
-
| `notify_collaborators` | Notify Collaborators after deploy | NO | booletan -> i.e.:
|
|
65
|
-
| `notify_employees` | Notify Employees after deploy | NO | booletan -> i.e.: true / false |
|
|
64
|
+
| `notify_collaborators` | Notify Collaborators after deploy | NO | booletan -> i.e.: `true` / `false` |
|
|
65
|
+
| `notify_employees` | Notify Employees after deploy | NO | booletan -> i.e.: `true` / `false` |
|
|
66
66
|
| `notify_message` | Notification message | NO | string -> i.e.: "Enjoy the new version!" |
|
|
67
67
|
| `changelog` | Release notes | NO | string -> i.e.: "Bug fixing" |
|
|
68
|
-
| `tags` | Tags to identify the build | NO | string -> comma separated. i.e.: "RC1, QA" |
|
|
68
|
+
| `tags` | Tags to identify the build | NO | string -> comma separated. i.e.: `"RC1, QA"` |
|
|
69
|
+
| `filter` | List of groups that will be notified | NO | string -> comma separated + special chars. i.e.: `"group1,group2\|group3"` = (grupo1 AND grupo2) OR (grupo3) |
|
|
69
70
|
| `build_path` | Build path to the APK / IPA file | NO | string -> by default it takes the IPA/APK build path |
|
|
70
71
|
|
|
71
72
|
## Shared Value
|
|
@@ -31,6 +31,7 @@ module Fastlane
|
|
|
31
31
|
notifyCollaborators: params[:notify_collaborators],
|
|
32
32
|
notifyEmployees: params[:notify_employees],
|
|
33
33
|
notifyMessage: params[:notify_message],
|
|
34
|
+
filter: params[:filter],
|
|
34
35
|
build: build,
|
|
35
36
|
deployer: {
|
|
36
37
|
name: "fastlane",
|
|
@@ -142,7 +143,12 @@ module Fastlane
|
|
|
142
143
|
default_value: "New version uploaded!",
|
|
143
144
|
optional: true,
|
|
144
145
|
type: String),
|
|
145
|
-
|
|
146
|
+
|
|
147
|
+
FastlaneCore::ConfigItem.new(key: :filter,
|
|
148
|
+
env_name: "APPLIVERY_FILTER",
|
|
149
|
+
description: "List of groups that will be notified",
|
|
150
|
+
optional: true,
|
|
151
|
+
type: String),
|
|
146
152
|
]
|
|
147
153
|
end
|
|
148
154
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-applivery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alejandro Jimenez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-02-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -125,8 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
|
-
|
|
129
|
-
rubygems_version: 2.6.12
|
|
128
|
+
rubygems_version: 3.0.3
|
|
130
129
|
signing_key:
|
|
131
130
|
specification_version: 4
|
|
132
131
|
summary: Upload new build to Applivery
|