Skip to content

Commit

Permalink
ci: swap semantic release config from YAML to JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
haifeng-li-at-salesforce committed Jun 20, 2024
1 parent 3818e4a commit 00e1bfd
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 23 deletions.
40 changes: 40 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"branches": ["release"],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file."
}
],
[
"@semantic-release/npm",
{
"npmPublish": true,
"tarballDir": "tarball"
}
],
[
"@semantic-release/github",
{
"assets": "tarball/*.tgz"
}
]
],
"debug": true,
"dryRun": false
}
23 changes: 0 additions & 23 deletions .releaserc.yml

This file was deleted.

0 comments on commit 00e1bfd

Please sign in to comment.