From 88b6f1cc05a8dbea9154cbf4ba71f3799d1086ff Mon Sep 17 00:00:00 2001 From: Kael Date: Wed, 24 Jul 2024 22:23:15 +1000 Subject: [PATCH] chore(ci): skip npm tag confirmation --- scripts/confirm-npm-tag.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/confirm-npm-tag.js b/scripts/confirm-npm-tag.js index 54b053105b8..c7ac0329d37 100644 --- a/scripts/confirm-npm-tag.js +++ b/scripts/confirm-npm-tag.js @@ -3,6 +3,8 @@ const shell = require('shelljs') const inquirer = require('inquirer') const version = require('../lerna.json').version +if (process.env.CI) process.exit(0) + function exec (command) { const result = shell.exec(command, { silent: true }) if (result.code) {