Skip to content

Commit

Permalink
chore: fix symantic release config
Browse files Browse the repository at this point in the history
(cherry picked from commit d1f28b6)

# Conflicts:
#	.releaserc
  • Loading branch information
akurungadam authored and Sajinsr committed Dec 25, 2024
1 parent 41900e9 commit 38e8731
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"branches": ["version-14", "version-15"],
"plugins": [
"@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"breaking": true, "release": false}
]
},
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec", {
"prepareCmd": 'sed -ir "s/[0-9]*\.[0-9]*\.[0-9]*/${nextRelease.version}/" healthcare/__init__.py'
}
],
[
"@semantic-release/git", {
"assets": ["healthcare/__init__.py"],
"message": "chore(release): Bumped to Version ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}

0 comments on commit 38e8731

Please sign in to comment.