Skip to content

Commit 5b9bd43

Browse files
committed
publish stdio inherit
1 parent 0352cda commit 5b9bd43

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/publish.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,8 @@ export async function publish(args) {
275275
logger.info(`Publishing package ${packageJson.name}@${publishVersionString}: '${cmd}'`);
276276
const res = tryExecSync(cmd, {
277277
cwd: packageDirectory,
278-
env: env
278+
env: env,
279+
stdio: 'inherit',
279280
});
280281
// If multiple workflows run at the same time it's possible that the package view command doenst find the package yet but the publish command fails with 403 and a message that the package already exists.
281282
if (!res.success

0 commit comments

Comments
 (0)