Skip to content

Commit

Permalink
fix: add .releaserc config
Browse files Browse the repository at this point in the history
  • Loading branch information
sydrawat01 committed Jan 9, 2024
1 parent 19bd9d4 commit aff230b
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"branches": [
"master"
],
"repositoryUrl": "https://github.com/sydrawat01/rest-api.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"release": {
"verifyConditions": {
"path": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git"
]
},
"analyzeCommits": [
"@semantic-release/commit-analyzer"
],
"generateNotes": [
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"writerOpts": {
"commitsSort": [
"header"
]
}
}
],
"prepare": [
"@semantic-release/git",
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
}
],
"publish": "@semantic-release/github",
"success": "@semantic-release/github",
"fail": "@semantic-release/github"
}
}

0 comments on commit aff230b

Please sign in to comment.