mirror of
https://github.com/google/blockly.git
synced 2026-01-06 00:20:37 +01:00
Fix release process
The documented release process is to do npm run recompile, merge the resulting branch to develop, and then do npm run relase, which does not do another build. This process should probably be changed, but for the moment ensure that npm run recompile (as well as npm run package:beta) runs buildTasks.checkinBuilt after each .build to preserve the old procedure.
This commit is contained in:
@@ -103,7 +103,9 @@ const updateGithubPages = gulp.series(
|
||||
execSync('git reset --hard upstream/develop', { stdio: 'inherit' });
|
||||
done();
|
||||
},
|
||||
buildTasks.cleanBuildDir,
|
||||
buildTasks.build,
|
||||
buildTasks.checkinBuilt,
|
||||
function(done) {
|
||||
execSync('git commit -am "Rebuild"', { stdio: 'inherit' });
|
||||
execSync('git push ' + upstream_url + ' gh-pages --force', { stdio: 'inherit' });
|
||||
|
||||
Reference in New Issue
Block a user