-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcicd.json
38 lines (38 loc) · 1000 Bytes
/
cicd.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
{
"$schema": "https://raw.githubusercontent.com/cangulo/cangulo.cicd/main/cicd.schema.json",
"dotnetTargets": {
"solutionPath": "./src/cangulo.changelog.sln"
},
"versioning": {
"currentVersion": "0.0.5",
"updateVersionInCSProjSettings": {
"projectPath": "./src/cangulo.changelog/cangulo.changelog.csproj",
"preReleaseVersionSuffix": "beta"
}
},
"gitSettings": {
"email": "[email protected]",
"name": "cangulo.cicd"
},
"changelogSettings": {
"commitsMode": "conventionalCommits",
"conventionalCommitsSettings": {
"types": [
"patch",
"minor",
"major"
]
}
},
"nugetSettings": {
"packNugetSettings": {
"projectPath": "./src/cangulo.changelog/cangulo.changelog.csproj",
"outputDirectory": "./nugets"
},
"pushNugetsSettings": {
"nugetsDirectory": "./nugets",
"source": "https://api.nuget.org/v3/index.json",
"apiKeyRequired": true
}
}
}