Skip to content

Commit

Permalink
fix: provide package.json to release the operator
Browse files Browse the repository at this point in the history
  • Loading branch information
opicaud committed May 20, 2024
1 parent d4a9555 commit 584f693
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions apps/observability-operator/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "observability-operator",
"release": {
"branches": ["main"],
"extends": "@lomray/semantic-release-monorepo",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/git",
"@semantic-release/github",
["@semantic-release/exec", {
"analyzeCommitsCmd": "echo ${lastRelease.version} > current_release_version",
"verifyReleaseCmd": "echo ${nextRelease.version} > next_release_version"
}]
]
}
}

0 comments on commit 584f693

Please sign in to comment.