20 lines
536 B
JSON
20 lines
536 B
JSON
{
|
|
"branches": ["main"],
|
|
"tagFormat": "${version}",
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
["@semantic-release/changelog", {
|
|
"changelogFile": "CHANGELOG.md"
|
|
}],
|
|
["@semantic-release/git", {
|
|
"assets": ["CHANGELOG.md"],
|
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}],
|
|
["@semantic-release/gitlab", {
|
|
"gitlabUrl": "${CI_SERVER_URL}",
|
|
"gitlabApiPathPrefix": "/api/v4"
|
|
}]
|
|
]
|
|
}
|