-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
54 lines (54 loc) · 1.78 KB
/
manifest.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
{
"components": [
{
"id": "github-workflows",
"type": "setup",
"files": [
{
"src": "src/common",
"dst": ".github"
},
{
"src": "src/${{ repoType }}",
"dst": ".github"
},
{
"src": "src/${{ language }}-common",
"dst": ".github"
},
{
"src": "src/${{ language }}-${{ repoType }}",
"dst": ".github"
}
],
"variables": [
{
"name": "language",
"type": "string",
"description": "The programming language of the project. Either 'python' or 'cpp'"
},
{
"name": "repoType",
"type": "string",
"description": "The type of the repository: 'app' or 'sdk'"
},
{
"name": "appManifestPath",
"type": "string",
"description": "Path of the AppManifest file, relative to the .velocitas.json"
},
{
"name": "githubRepoId",
"type": "string",
"description": "The id of the repository, e.g. myOrg/myRepo."
},
{
"name": "appExecutionPlatforms",
"type": "string",
"description": "Comma separated list of supported app execution platforms.",
"default": "linux/amd64, linux/arm64"
}
]
}
]
}