-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathvsts-extension-code-push.json
150 lines (150 loc) · 4.89 KB
/
vsts-extension-code-push.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
{
"manifestVersion": 1.0,
"id": "code-push",
"name": "CodePush",
"version": "1.3.1",
"publisher": "ms-vsclient",
"description": "Provides build/release tasks that enable performing continuous delivery to the CodePush service from an automated VSTS build or release definition",
"categories": [
"Build and release"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"scope": [
"vso.build",
"vso.serviceendpoint"
],
"tags": [
"Cordova", "React Native", "CodePush", "Deploy", "Continuous Integration", "Continuous Delivery", "Android", "iOS"
],
"links": {
"issues": {
"uri": "https://github.com/Microsoft/code-push-vsts-extension/issues"
},
"support": {
"uri": "http://stackoverflow.com/questions/tagged/codepush"
},
"repository": {
"uri": "https://github.com/Microsoft/code-push-vsts-extension"
}
},
"icons": {
"default": "codepush_default.png",
"large": "codepush_large.png"
},
"branding": {
"color": "#000000",
"theme": "dark"
},
"content":{
"details": {
"path": "docs/extension-overview.md"
},
"thirdpartynotice": {
"path": "ThirdPartyNotices.txt"
}
},
"files": [
{
"path": "Tasks/codepush-release"
},
{
"path": "Tasks/codepush-promote"
},
{
"path": "Tasks/codepush-release-cordova"
},
{
"path": "Tasks/codepush-patch"
},
{
"path": "images",
"addressable": true
}
],
"contributions": [
{
"id": "codepush.tasks.release",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "Tasks/codepush-release"
}
},
{
"id": "codepush.tasks.promote",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "Tasks/codepush-promote"
}
},
{
"id": "codepush.tasks.releasecordova",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "Tasks/codepush-release-cordova"
}
},
{
"id": "codepush.tasks.patch",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "Tasks/codepush-patch"
}
},
{
"id": "codepush-service-endpoint",
"description": "CodePushAuthenticationEndpoint",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "codepush-auth-key",
"displayName": "CodePush",
"url": "https://microsoft.github.io/code-push",
"inputDescriptors": [],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "Username",
"description": "Username",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "string"
},
"values": {
"inputId": "usernameInput",
"defaultValue": "",
"isDisabled": true
}
},
{
"id": "password",
"name": "Access Key",
"description": "Access key used to authenticate with the CodePush server.",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
]
}
}
]
}