forked from newrelic/repolinter-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc.json
23 lines (23 loc) · 877 Bytes
/
.releaserc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", {
"changelogFile": "CHANGELOG.md"
}],
["@semantic-release/exec", {
"prepareCmd": "sed -i -E \"s/image:\\s*[\\\"\\']?[^\\\"\\'[:space:]]+[\\\"\\']?/image: docker:\\/\\/ghcr.io\\/newrelic\\/repolinter-action:${nextRelease.gitTag}/\" action.yml"
}],
["@semantic-release/npm", {
"npmPublish": false
}],
["@semantic-release/git", {
"assets": ["dist/*", "CHANGELOG.md", "package.json", "package-lock.json", "action.yml"],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}],
"@semantic-release/github"
],
"dryRun": false,
"debug": true
}