-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathvsts-extension-google-play.json
158 lines (158 loc) · 5.01 KB
/
vsts-extension-google-play.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"manifestVersion": 1.0,
"id": "google-play",
"name": "Google Play",
"version": "4.244.0",
"publisher": "ms-vsclient",
"description": "Provides tasks for continuous delivery to the Google Play Store from TFS/Team Services build or release definitions",
"categories": [
"Azure Pipelines"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"galleryFlags": [],
"icons": {
"default": "android_default.png",
"wide": "android_wide.jpg"
},
"branding": {
"color": "#E5E5E5",
"theme": "light"
},
"content": {
"details": {
"path": "docs/vsts-README.md"
},
"thirdpartynotice": {
"path": "ThirdPartyNotices.txt"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/microsoft/google-play-vsts-extension"
},
"files": [
{
"path": "_build/Tasks/GooglePlayReleaseV4"
},
{
"path": "_build/Tasks/GooglePlayPromoteV3"
},
{
"path": "_build/Tasks/GooglePlayIncreaseRolloutV2"
},
{
"path": "_build/Tasks/GooglePlayStatusUpdateV2"
},
{
"path": "images",
"addressable": true
}
],
"scope": [
"vso.build",
"vso.serviceendpoint"
],
"tags": [
"Android",
"Google Play",
"Deploy",
"Continuous Delivery"
],
"links": {
"issues": {
"url": "https://github.com/Microsoft/google-play-vsts-extension/issues"
},
"repository": {
"url": "https://github.com/Microsoft/google-play-vsts-extension"
}
},
"contributions": [
{
"id": "google-play-release",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayReleaseV4"
}
},
{
"id": "google-play-promote",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayPromoteV3"
}
},
{
"id": "google-play-rollout-update",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayIncreaseRolloutV2"
}
},
{
"id": "google-play-status-update",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayStatusUpdateV2"
}
},
{
"id": "google-play-service-endpoint",
"description": "GooglePlayAuthenticationEndpoint",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "google-play",
"displayName": "Google Play",
"url": "https://accounts.google.com/o/oauth2/v2/auth",
"inputDescriptors": [],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "Service Account E-mail",
"description": "The e-mail address of the service account used to authenticate with the Google Play store",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "password",
"name": "Private Key",
"description": "Enter the private key from the Google Play Developer Console in the format: -----BEGIN PRIVATE KEY-----\\nYourPrivateKeyHere\\n-----END PRIVATE KEY-----\\n",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
]
}
}
]
}