mirror of
https://github.com/docker/build-push-action.git
synced 2025-03-31 12:10:06 +02:00
Ensure --progress=plain to avoid logs cutting
Signed-off-by: Morlay <morlay.null@gmail.com>
This commit is contained in:
parent
5ab22b2b60
commit
9953b3e029
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ export async function getArgs(inputs: Inputs, buildxVersion: string): Promise<Ar
|
|||
}
|
||||
|
||||
async function getBuildArgs(inputs: Inputs, buildxVersion: string): Promise<Array<string>> {
|
||||
let args: Array<string> = ['build'];
|
||||
let args: Array<string> = ['build', '--progress', 'plain'];
|
||||
await asyncForEach(inputs.buildArgs, async buildArg => {
|
||||
args.push('--build-arg', buildArg);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue