Skip to content

Commit

Permalink
update release config prerelease names
Browse files Browse the repository at this point in the history
  • Loading branch information
jared-dickman committed Jun 12, 2024
1 parent 9f89fa1 commit 5ad8e03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ module.exports = {
{
name: 'chore/*',
channel: 'chore',
prerelease: "${name.split('/').slice(1).join('-').toLowerCase()}"
prerelease: "chore-${name.split('/').slice(1).join('-').toLowerCase()}"
},
{
name: 'fix/*',
channel: 'fix',
prerelease: "${name.split('/').slice(1).join('-').toLowerCase()}"
prerelease: "fix-${name.split('/').slice(1).join('-').toLowerCase()}"
},

],
Expand Down

0 comments on commit 5ad8e03

Please sign in to comment.