diff --git a/gulpfile.js b/gulpfile.js index 3fb69e60ff..e27ee4d85c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -20,7 +20,9 @@ task('publishTagfromBeta', async function () { const betaPackageJSON = require('./package.json'); const tag = "v" + betaPackageJSON.version console.info(`Creating tag ${tag} from remix_beta branch`) - cmdOp = await promisifyExec(`git tag ${tag}; git push --tags`); + cmdOp = await promisifyExec(`git tag ${tag};`); + console.info(cmdOp.stdout) + cmdOp = await promisifyExec(`git push --tags`); console.info(cmdOp.stdout) });