Skip to content

Commit

Permalink
fix(ci): Test semantic draft release
Browse files Browse the repository at this point in the history
  • Loading branch information
adanylenko committed Mar 8, 2024
1 parent 8bcda7d commit ca33714
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ release:
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
changelog:
skip: true
disable: true
19 changes: 13 additions & 6 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
{
"branches": ["master", { "name": "beta", "prerelease": true }, { "name": "test-build", "prerelease": true }],
"branches": [
"master",
{ "name": "beta", "prerelease": true },
{ "name": "test-build", "prerelease": true }
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
["@semantic-release/git", {
"assets": ["docs"],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}]
["@semantic-release/github", { "draftRelease": true }],
[
"@semantic-release/git",
{
"assets": ["docs"],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}

0 comments on commit ca33714

Please sign in to comment.