Add push to github pages after build (#3615)

This commit is contained in:
alschmiedt
2020-01-21 14:13:21 -08:00
committed by Sam El-Husseini
parent 2857960331
commit f589a32120

View File

@@ -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();
},
])