forked from microsoft/app-store-vsts-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-store-vsts-extension.json
168 lines (168 loc) · 5.82 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
{
"manifestVersion": 1,
"id": "app-store",
"name": "Apple App Store",
"version": "1.158.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"
}
}
]
}
]
}
}
]
}