1
0
Fork 0
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:
Morlay 2020-10-20 17:53:20 +08:00
parent 5ab22b2b60
commit 9953b3e029

View file

@ -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);
});