From 1e3d0a277500438cfd2dd7fd07edb827abd2379f Mon Sep 17 00:00:00 2001 From: Benoit Schweblin Date: Sun, 7 Jan 2018 16:28:16 +0000 Subject: [PATCH] Fixed tag build --- Gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.js b/Gulpfile.js index 47503863..49b81625 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -266,7 +266,7 @@ gulp.task('git-tag', function() { return exec('npm publish'); }) .then(function () { - return exec('git push origin master --tags'); + return exec('git push origin v4 --tags'); }); });