diff --git a/package.json b/package.json index 9f84e5a..350d39f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "1password-action", - "version": "3.0.2", + "version": "3.0.3", "private": true, "description": "Import items from 1Password securely", "main": "lib/main.js", diff --git a/src/exec.ts b/src/exec.ts index e86d74c..be917d6 100644 --- a/src/exec.ts +++ b/src/exec.ts @@ -8,9 +8,8 @@ export async function execWithOutput( let out = '' let err = '' - const isDebug = process.env.ACTIONS_STEP_DEBUG === 'true' const opt = options ?? {} - opt.silent = !isDebug + opt.silent = false opt.listeners = { stdout: (data: Buffer) => { out += data.toString()