-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.nyx.json
47 lines (47 loc) · 1.36 KB
/
.nyx.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
{
"preset": "simple",
"git": {
"remotes": {
"origin": {
"authenticationMethod": "USER_PASSWORD",
"user": "{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}",
"password": "{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}"
}
}
},
"releaseTypes": {
"publicationServices": [
"github"
],
"remoteRepositories": [
"origin"
]
},
"releaseAssets": {
"tar": {
"description": "transpose-gherkin-datatable {{version}} tar distribution",
"fileName": "transpose-gherkin-datatable-{{version}}.tar",
"path": "build/distributions/transpose-gherkin-datatable-{{version}}.tar",
"type": "application/x-tar"
},
"zip": {
"description": "transpose-gherkin-datatable {{version}} zip distribution",
"fileName": "transpose-gherkin-datatable-{{version}}.zip",
"path": "build/distributions/transpose-gherkin-datatable-{{version}}.zip",
"type": "application/zip"
}
},
"services": {
"github": {
"type": "GITHUB",
"options": {
"AUTHENTICATION_TOKEN": "{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}",
"REPOSITORY_NAME": "transpose-gherkin-datatable",
"REPOSITORY_OWNER": "harmenweber"
}
}
},
"summaryFile": "build/.nyx-summary.txt",
"stateFile": "build/.nyx-state.json",
"verbosity": "DEBUG"
}