From bf14809ab7335ca94d8a3cda91839527dd42a2f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jose=20Mi=C3=B1o=20-=20TN?= <87651687+jj-mino@users.noreply.github.com> Date: Fri, 15 Oct 2021 13:34:07 -0300 Subject: [PATCH] Update context.ts --- src/context.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/context.ts b/src/context.ts index b951a9b..2fcb6c2 100644 --- a/src/context.ts +++ b/src/context.ts @@ -26,6 +26,7 @@ export interface Inputs { noCache: boolean; outputs: string[]; platforms: string[]; + quiet: boolean; pull: boolean; push: boolean; secrets: string[]; @@ -74,6 +75,7 @@ export async function getInputs(defaultContext: string): Promise { load: core.getBooleanInput('load'), network: core.getInput('network'), noCache: core.getBooleanInput('no-cache'), + quiet: core.getBooleanInput('quiet'), outputs: await getInputList('outputs', true), platforms: await getInputList('platforms'), pull: core.getBooleanInput('pull'), @@ -153,6 +155,9 @@ async function getBuildArgs(inputs: Inputs, defaultContext: string, buildxVersio if (inputs.file) { args.push('--file', inputs.file); } + if (inputs.quiet) { + args.push('--quiet'); + } return args; }