Skip to content

Commit

Permalink
feat(release): add release auto fetch version
Browse files Browse the repository at this point in the history
  • Loading branch information
khoilen committed Jan 5, 2025
1 parent cf6f154 commit 827df50
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Empty file added apps/nt-stylesheet/CHANGELOG.md
Empty file.
24 changes: 24 additions & 0 deletions release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,28 @@
*/
module.exports = {
branches: ['main', { name: 'beta', prerelease: true }],
repositoryUrl: 'https://github.com/nashtech-garage/nt-sketchbook',
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/changelog',
[
'@semantic-release/npm',
{
pkgRoot: 'apps/nt-stylesheet',
},
],
'@semantic-release/github',
[
'@semantic-release/git',
{
assets: [
'apps/nt-stylesheet/package.json',
'apps/nt-stylesheet/CHANGELOG.md',
],
message:
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
],
}

0 comments on commit 827df50

Please sign in to comment.