From 6379a444975ca6915912c78f706641690659d5f8 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Thu, 28 Dec 2023 19:45:31 +0530 Subject: [PATCH] separate script --- gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) });