Spaces:
Runtime error
Runtime error
File size: 439 Bytes
8fd7a1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
module.exports = {
extends: 'scratch-semantic-release-config',
branches: [
{
name: 'develop'
// default channel
},
{
name: 'hotfix/REPLACE', // replace with actual hotfix branch name
channel: 'hotfix',
prerelease: 'hotfix'
},
{
name: 'beta',
channel: 'beta',
prerelease: true
}
]
};
|