-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): fix .releaserc github plugin configuration
- Loading branch information
Oliver Paraskos
committed
Oct 13, 2022
1 parent
4cc8f4d
commit 197fc90
Showing
1 changed file
with
18 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
tagFormat: v${version} | ||
plugins: | ||
- - "@semantic-release/commit-analyzer" | ||
- preset: angular | ||
- "@semantic-release/release-notes-generator" | ||
- - "@semantic-release/changelog" | ||
- preset: angular | ||
- - "@semantic-release/npm" | ||
- npmPublish: false | ||
- - "@semantic-release/git" | ||
- assets: | ||
- package.json | ||
- CHANGELOG.md | ||
message: |- | ||
chore(release): ${nextRelease.version} | ||
|
||
${nextRelease.notes} | ||
- - "@semantic-release/github": | ||
- assets: | ||
- path: "**/*.vsix" | ||
label: "Visual Studio Extension Package" | ||
|
||
{ | ||
"tagFormat": "v${version}", | ||
"plugins": [ | ||
[ "@semantic-release/commit-analyzer", { "preset": "angular" }], | ||
"@semantic-release/release-notes-generator", | ||
[ "@semantic-release/changelog", { "preset": "angular" } ], | ||
[ "@semantic-release/npm", { "npmPublish": false } ], | ||
[ "@semantic-release/git", { | ||
"assets": [ "package.json", "CHANGELOG.md" ], | ||
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}" | ||
}], | ||
[ "@semantic-release/github", { | ||
"assets": [ | ||
{ "path": "**/*.vsix", "label": "Visual Studio Extension Package" } | ||
] | ||
} ] | ||
] | ||
} |