diff options
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/gulpfile.js b/gulpfile.js index 3d4ab28..e9485b2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -12,18 +12,4 @@ gulp.task('default', function() { gulp.task('clean', ['clean:cdn', 'clean:zip']); -gulp.task('tag', ['deploy:cdn', 'deploy:zip'], function() { - if(args.release) { - version = args.version || version; - return git.tag(version, 'Release version ' + version, {cwd: '.'}, function (err) { - if (err) throw err; - return git.push('origin', version, {cwd: '.', args: '--tags'}); - }); - } -}); - -gulp.task('deploy', ['tag']); - -// can't run all the verification concurrently until sauce-connect-launcher supports -// multiple tunnels -//gulp.task('verify', ['verify:cdn', 'verify:zip]); +gulp.task('deploy', ['deploy:cdn', 'deploy:zip']); |