-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
62 lines (62 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
{
"manifestVersion": 1,
"id": "HelmfileRunner",
"name": "Helmfile Runner",
"version": "1.0.0",
"publisher": "GSoft",
"author": "Yohan Belval",
"public": true,
"galleryFlags": ["Public"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Allows the use of the helmfile command line tool on the executing host.",
"tags": ["Helm", "Build", "Release", "Azure Pipelines", "Visual Studio Extensions"],
"categories": ["Azure Pipelines"],
"content": {
"details": {
"path": "docs/overview.md"
},
"license": {
"path": "LICENSE"
}
},
"icons": {
"default": "task/icon.png"
},
"files": [
{
"path": "task/dist",
"packagePath": "Tasks/HelmfileRunner/src"
},
{
"path": "task/node_modules",
"packagePath": "Tasks/HelmfileRunner/node_modules"
},
{
"path": "task/task.json",
"packagePath": "Tasks/HelmfileRunner/task.json"
},
{
"path": "task/icon.png",
"packagePath": "Tasks/HelmfileRunner/icon.png",
"addressable": true
}
],
"contributions": [
{
"id": "HelmfileRunner",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "Tasks/HelmfileRunner"
}
}
],
"repository": {
"type": "git",
"uri": "https://github.com/gsoft-inc/azure-pipelines-helmfile-installer"
}
}