mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-11-14 19:35:30 -05:00
18 lines
357 B
JavaScript
18 lines
357 B
JavaScript
module.exports = {
|
|
extends: 'scratch-semantic-release-config',
|
|
branches: [
|
|
{
|
|
name: 'develop'
|
|
// default channel
|
|
},
|
|
{
|
|
name: 'hotfix/*',
|
|
channel: 'hotfix'
|
|
},
|
|
{
|
|
name: 'beta',
|
|
channel: 'beta',
|
|
prerelease: true
|
|
}
|
|
]
|
|
};
|