We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cac74f commit 4e69b71Copy full SHA for 4e69b71
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "1password-action",
3
- "version": "3.0.2",
+ "version": "3.0.3",
4
"private": true,
5
"description": "Import items from 1Password securely",
6
"main": "lib/main.js",
src/exec.ts
@@ -8,9 +8,8 @@ export async function execWithOutput(
8
let out = ''
9
let err = ''
10
11
- const isDebug = process.env.ACTIONS_STEP_DEBUG === 'true'
12
const opt = options ?? {}
13
- opt.silent = !isDebug
+ opt.silent = false
14
opt.listeners = {
15
stdout: (data: Buffer) => {
16
out += data.toString()
0 commit comments