separate generate changelog in two steps

old
Kiko Beats 2015-11-05 17:45:47 +01:00
parent 226d83db30
commit a06d45fc69
1 changed files with 4 additions and 5 deletions

View File

@ -22,15 +22,14 @@ plugins:
'Generating CHANGELOG file':
plugin: 'bumped-changelog'
'Committing the new version':
'Publishing CHANGELOG at Github':
plugin: 'bumped-terminal'
command: 'git add . && git commit -m "$newVersion releases"'
command: 'git add CHANGELOG.md && git commit CHANGELOG.md -m "$newVersion release" && git push origin master'
'Publishing at Github':
'Publishing tag at Github':
plugin: 'bumped-terminal'
command: 'git tag $newVersion && git push --tags && git push origin master'
command: 'git tag $newVersion && git push origin $newVersion'
'Publishing at NPM':
plugin: 'bumped-terminal'
command: 'npm publish'