-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.yml
40 lines (34 loc) · 1.15 KB
/
.releaserc.yml
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
{
tagFormat: "${version}",
branches: "master",
plugins: [
[ "@semantic-release/commit-analyzer", {
preset: "angular"
} ],
# Used to generate the text of the release notes
[ "@semantic-release/release-notes-generator" ],
# Used to generate a changelog file
[ "@semantic-release/changelog", {
changelogTitle: "Changelog"
} ],
# Used to update package.json
[ "@semantic-release/npm", {
npmPublish: false # I don't release this library on npm
} ],
# Used to update the csproj
[ "semantic-release-dotnet", {
paths: [ "CorundumGames.Codegen/CorundumGames.Codegen.csproj" ],
indent: 0 # leave existing indentation alone
} ],
# Used to commit updated package-related files and to commit the binary to the UPM branch
[ "@semantic-release/git", {
assets: [
"package.json",
"CorundumGames.Codegen/CorundumGames.Codegen.csproj",
"CHANGELOG.md"
],
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
} ]
# Not using semantic-release-nuget because it doesn't let me provide the arguments I need
]
}