mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-11-14 19:35:09 -05:00
8263893c5b
All non-cron builds deploy to GH Pages, but only release branches generate actual releases on npm / GH. Hotfix branches are considered release branches and should be released under the `hotfix` tag on npm.
13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
module.exports = {
|
|
extends: 'scratch-semantic-release-config',
|
|
branches: [
|
|
{
|
|
name: 'develop'
|
|
// default channel
|
|
},
|
|
{
|
|
name: 'hotfix/*',
|
|
channel: 'hotfix'
|
|
}
|
|
]
|
|
};
|