Created
February 20, 2015 04:12
-
-
Save eseceve/1461a561b4184dd6e2da to your computer and use it in GitHub Desktop.
Gulp task to do deploy: changelog + bump + commit + tag + push (to github)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var $ = require('gulp-load-plugins')(); | |
var changelog = require('conventional-changelog'); | |
var exec = require('child_process').exec; | |
var fs = require('fs'); | |
var gulp = require('gulp'); | |
var pkg = require('../package.json'); | |
var semver = require('semver'); | |
var paths = gulp.paths; | |
var tagTypes = { | |
patch: 'patch', | |
feature: 'minor', | |
release: 'major' | |
}; | |
var version; | |
gulp.task('deploy:init', ['lint'], function(done) { | |
var tagType = tagTypes[$.util.env.tag]; | |
version = semver.inc(pkg.version, tagType); | |
if (!$.util.env.tag) return done('--tag is required'); | |
if (!tagType) return done('--tag must be patch, feature or release'); | |
if ($.util.env.f) return $.git.exec({args: 'stash'}); | |
exec('git status -s', function(err, stdout, stderr) { | |
if (err) return done(err); | |
if (stdout.length) return done('Repositoty have not a clean status'); | |
done(); | |
}); | |
}); | |
gulp.task('changelog', ['deploy:init'], function (done) { | |
changelog({ | |
repository: pkg.repository.url.replace('git://', 'https://') | |
.replace('.git', ''), | |
version: version, | |
file: 'CHANGELOG.md' | |
}, function(err, log) { | |
fs.writeFileSync(__dirname + '/../CHANGELOG.md', log); | |
done(); | |
}); | |
}); | |
gulp.task('bump', ['changelog'], function(done) { | |
return gulp.src(['./package.json', './bower.json']) | |
.pipe($.bump({version: version})) | |
.pipe(gulp.dest('./')) | |
.pipe($.size({ title: '/', showFiles: true })); | |
}); | |
gulp.task('deploy:commit', ['bump'], function() { | |
return gulp.src(['./package.json', './bower.json', './CHANGELOG.md']) | |
.pipe($.git.add()) | |
.pipe($.git.commit('release: version ' + version)) | |
.pipe($.size({ title: '/', showFiles: true })); | |
}); | |
gulp.task('deploy:tag', ['deploy:commit'], function(done) { | |
$.git.tag('v'+version, 'release: version ' + version, done); | |
}); | |
gulp.task('deploy:push', ['deploy:tag'], function(done) { | |
$.git.push('origin', 'master', {args: '--tags'}, done); | |
}); | |
gulp.task('deploy', [ | |
'deploy:init', 'changelog', 'bump', | |
'deploy:commit', 'deploy:tag', 'deploy:push' | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Really nice. Thanks.