Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 935411c

Browse files
committed
chore(gulp): add --tags arg to git push
1 parent 85401e0 commit 935411c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ gulp.task('changelog', function() {
129129
});
130130

131131
gulp.task('push', function(done) {
132-
$.git.push();
132+
$.git.push('origin', 'master', {args: '--tags'});
133133
done();
134134
});
135135

@@ -147,7 +147,7 @@ gulp.task('tag', function() {
147147
});
148148

149149
gulp.task('bump', function(done) {
150-
runSequence('changelog', 'recommendedBump', 'add', 'commit', 'tag', 'push', done);
150+
runSequence('recommendedBump', 'changelog', 'add', 'commit', 'tag', 'push', done);
151151
});
152152

153153
var handleError = function (err) {

0 commit comments

Comments
 (0)