forked from crowdin/crowdin-api-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.release-it.json
More file actions
34 lines (34 loc) · 759 Bytes
/
.release-it.json
File metadata and controls
34 lines (34 loc) · 759 Bytes
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
{
"git": {
"push": true,
"commit": true,
"commitMessage": "chore: version ${version} [skip ci]",
"requireBranch": "master",
"tag": true
},
"github": {
"release": true,
"autoGenerate": true,
"releaseName": "${version}"
},
"plugins": {
"@j-ulrich/release-it-regex-bumper": {
"in": "build.gradle",
"out": [
{
"file": "README.md",
"search": {
"pattern": "\\d+\\.\\d+\\.\\d+",
"flags": "g"
},
"replace": "{{versionWithoutPrerelease}}"
},
{
"file": "build.gradle",
"search": "version '\\d+\\.\\d+\\.\\d+'",
"replace": "version '{{versionWithoutPrerelease}}'"
}
]
}
}
}