scratch-gui/release.config.js

20 lines
439 B
JavaScript
Raw Permalink Normal View History

2022-09-20 06:07:12 +08:00
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
2022-09-20 06:07:12 +08:00
}
]
};