-
Notifications
You must be signed in to change notification settings - Fork 53
/
app-store-vsts-extension.json
232 lines (232 loc) · 9.08 KB
/
app-store-vsts-extension.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
"manifestVersion": 1,
"id": "app-store",
"name": "Apple App Store",
"version": "1.245.0",
"publisher": "ms-vsclient",
"description": "Provides tasks for publishing to Apple's App Store from a TFS/Azure DevOps build or release pipeline",
"categories": [
"Build and release"
],
"tags": [
"deploy",
"release",
"iOS",
"Xcode",
"Apple",
"App Store",
"iTunes Connect",
"iPad",
"iPhone",
"tvOS",
"watchOS"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "apple_default.png"
},
"visibility": [
"Build and release"
],
"content":{
"details": {
"path": "docs/vsts-README.md"
},
"thirdpartynotice": {
"path": "ThirdPartyNotices.txt"
}
},
"links": {
"getstarted": {
"uri": "https://github.com/microsoft/app-store-vsts-extension/"
},
"support": {
"uri": "https://github.com/microsoft/app-store-vsts-extension/issues"
},
"issues": {
"uri": "https://github.com/microsoft/app-store-vsts-extension/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/microsoft/app-store-vsts-extension/"
},
"files": [
{
"path": "_build/Tasks/AppStorePromote"
},
{
"path": "_build/Tasks/AppStoreRelease"
},
{
"path": "_build/Tasks/IpaResign"
},
{
"path": "images",
"addressable": true
}
],
"scope": [
"vso.build",
"vso.serviceendpoint"
],
"contributions": [
{
"id": "app-store-promote",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "_build/Tasks/AppStorePromote"
}
},
{
"id": "app-store-release",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "_build/Tasks/AppStoreRelease"
}
},
{
"id": "ipa-resign",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "_build/Tasks/IpaResign"
}
},
{
"id": "apple-app-store-service-endpoint",
"description": "AppleAppStoreAuthenticationEndpoint",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "apple-app-store",
"displayName": "Apple App Store",
"url": "https://itunesconnect.apple.com/",
"inputDescriptors": [],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "App Store E-mail",
"description": "The e-mail address of the service account used to authenticate with the Apple App Store.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "password",
"name": "Password",
"description": "Password for the account that is publishing to the Apple App Store.",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "appSpecificPassword",
"name": "App-specific Password",
"description": "Used with two-step verification. (See: https://appleid.apple.com/account/manage -> Security -> App-specific Passwords)",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": false,
"dataType": "string"
}
},
{
"id": "fastlaneSession",
"name": "Fastlane Session",
"description": "Used with two-step verification. (See: https://github.com/fastlane/fastlane/blob/master/spaceship/README.md#support-for-ci-machines)",
"inputMode": "textarea",
"isConfidential": true,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
},
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "apiKeyId",
"name": "Key ID",
"description": "App Store Connect API Key ID",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "apiKeyIssuerId",
"name": "Issuer ID",
"description": "App Store Connect API Issuer ID",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "apitoken",
"name": "Key Content (base64-encoded Private Key)",
"description": "Base64-encoded content of the App Store Connect API P8 private key file",
"inputMode": "textarea",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "apiKeyInHouse",
"name": "In House (Enterprise)",
"description": "App Store Connect API Use In House (Enterprise) Account",
"inputMode": "combo",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "string",
"maxLength": 30
},
"values": {
"inputId": "apiKeyInHouseValues",
"defaultValue": "apiKeyInHouse_false",
"possibleValues": [
{
"value": "apiKeyInHouse_true",
"displayValue": "Yes"
},
{
"value": "apiKeyInHouse_false",
"displayValue": "No"
}
]
}
}
]
}
]
}
}
]
}