mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-18 13:03:47 +02:00
25 lines
No EOL
607 B
JavaScript
25 lines
No EOL
607 B
JavaScript
const gitprimarybranch = "master";
|
|
|
|
module.exports = {
|
|
branches: [gitprimarybranch],
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
[
|
|
"@semantic-release/changelog",
|
|
{
|
|
changelogFile: "CHANGELOG.md",
|
|
},
|
|
],
|
|
"@semantic-release/npm",
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
assets: ["CHANGELOG.md", "package.json"],
|
|
message:
|
|
":bookmark: Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
|
|
},
|
|
],
|
|
["@semantic-release/github"],
|
|
],
|
|
}; |