-
Notifications
You must be signed in to change notification settings - Fork 6
/
vss-extension.json
65 lines (65 loc) · 1.42 KB
/
vss-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
{
"$schema": "http://json.schemastore.org/vss-extension",
"manifestVersion": 1,
"id": "vercel-deployment-extension",
"name": "Vercel Deployment Extension",
"version": "1.6.4",
"publisher": "Vercel",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "An Azure Pipelines Task Extension for automatically deploying to Vercel",
"categories": ["Azure Pipelines"],
"content": {
"details": {
"path": "README.md"
}
},
"files": [
{
"path": "vercel-deployment-task"
},
{
"path": "vercel-azdo-pr-comment-task"
},
{
"path": "images",
"addressable": true
}
],
"repository": {
"type": "git",
"uri": "https://github.com/vercel/vercel-azure-devops-extension"
},
"icons": {
"default": "./icons/logo.png"
},
"tags": [
"Azure DevOps Extensions",
"Vercel",
"Deployment",
"Next.js",
"Frontend Cloud"
],
"contributions": [
{
"id": "vercel-deployment-task",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "vercel-deployment-task"
}
},
{
"id": "vercel-azdo-pr-comment-task",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "vercel-azdo-pr-comment-task"
}
}
]
}