Skip to content

Commit

Permalink
fix(release): fix releaserc
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht committed Jan 9, 2022
1 parent ed4eccc commit 1e79db4
Showing 1 changed file with 17 additions and 24 deletions.
41 changes: 17 additions & 24 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,31 @@
{
"branches": ["main"],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github"
],
"verifyConfig": ["@semantic-release/github"],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "changelog.md"
}
],
"publish": [
{
"path": "@semantic-release/github",
"assets": [
{
"path": "changelog.md",
"label": "Changelog"
}
]
}
],
"fail": ["@semantic-release/github"],
"success": ["@semantic-release/github"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "changelog.md"
}
],
[
"@semantic-release/git",
{
"assets": ["changelog.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "changelog.md",
"label": "Changelog"
}
]
}
]
]
}

0 comments on commit 1e79db4

Please sign in to comment.