diff --git a/gulpfile.js b/gulpfile.js index e16a3c79..e7b017d9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -319,6 +319,22 @@ gulp.task('website', ['clean-website', 'playground-samples'], function() { cp.execSync('npm install monaco-editor', { cwd: path.join(__dirname, '../monaco-editor-website') }); + cp.execSync('git init', { + cwd: path.join(__dirname, '../monaco-editor-website') + }); + cp.execSync('git checkout -b gh-pages', { + cwd: path.join(__dirname, '../monaco-editor-website') + }); + cp.execSync('git add .', { + cwd: path.join(__dirname, '../monaco-editor-website') + }); + cp.execSync('git commit -m "Publish website"', { + cwd: path.join(__dirname, '../monaco-editor-website') + }); + cp.execSync('git remote add origin https://github.com/Microsoft/monaco-editor.git', { + cwd: path.join(__dirname, '../monaco-editor-website') + }); + console.log('RUN monaco-editor-website>git push origin gh-pages --force') this.emit('end'); })) );