We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b003c20 commit b9b8fcfCopy full SHA for b9b8fcf
build/release.js
@@ -55,9 +55,10 @@ module.exports = function( Release ) {
55
process.chdir( repo );
56
Release.git( "add ." , "Error adding files." );
57
Release.git( "commit -m '" + commitMessage + "'" , "Error commiting demos files." );
58
+ Release.exec( "npm version patch" );
59
if ( !Release.isTest ) {
60
console.log( "Pushing to github..." );
- Release.git( "push", "Error pushing demos to github." );
61
+ Release.git( "push --tags origin master", "Error pushing demos to github." );
62
}
63
console.log();
64
},
0 commit comments