scratch-gui / release.config.js
soiz1's picture
Upload folder using huggingface_hub
8fd7a1d verified
raw
history blame contribute delete
439 Bytes
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
}
]
};