Skip to content

Commit

Permalink
Turn off quiet mode in debug mode (#47)
Browse files Browse the repository at this point in the history
Fixes #46
  • Loading branch information
Firehed authored Sep 26, 2024
1 parent 2541cc0 commit ecc87e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export async function runDockerCommand(command: DockerCommand, ...args: string[]
if (command === 'build' && shouldBuildInParallel()) {
rest.unshift('buildx')
}
if (core.getBooleanInput('quiet') && command !== 'tag') {
if (!core.isDebug() && core.getBooleanInput('quiet') && command !== 'tag') {
rest.push('--quiet')
}
rest.push(...args)
Expand Down

0 comments on commit ecc87e2

Please sign in to comment.