ssh-deploy/.releaserc

23 lines
413 B
Plaintext
Raw Normal View History

2021-05-27 23:56:27 +03:00
{
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
["@semantic-release/npm", {
"npmPublish": false
}],
2021-05-27 23:56:27 +03:00
[
"@semantic-release/git",
{
"assets": ["docs/CHANGELOG.md"]
}
]
]
}