Skip to content

Commit

Permalink
fix: fix CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
fgiova committed Jan 19, 2024
1 parent 105271c commit 007ad3c
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,21 +1,31 @@
{
"branches": ["master", "main"],
"branches": [
"master",
"main"
],
"tagFormat": "${version}",
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "*!",
"release": "major"
}
]
}],
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "*!",
"release": "major"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
["@semantic-release/npm", {
"npmPublish": false
}],
"@semantic-release/git"
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": ["package.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}

0 comments on commit 007ad3c

Please sign in to comment.