diff --git a/gulpfile.js b/gulpfile.js index bf71f928c..a77c68f50 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -984,6 +984,8 @@ gulp.task('git-create-rc', gulp.series([ execSync('git checkout -b ' + branchName, { stdio: 'inherit' }); execSync('git push ' + upstream_url + ' ' + branchName, { stdio: 'inherit' }); + execSync('git checkout -b gh-pages'); + execSync('git push ' + upstream_url + ' gh-pages'); done(); }, ])