mirror of
https://github.com/docker/build-push-action.git
synced 2025-04-04 14:10:06 +02:00
Added 'quiet' docker arg support
Signed-off-by: Juan Miño <juan.mino@truenorth.co>
This commit is contained in:
parent
5e11b373bf
commit
3d75494833
1 changed files with 3 additions and 3 deletions
4
dist/index.js
generated
vendored
4
dist/index.js
generated
vendored
|
@ -386,8 +386,8 @@ function getCommonArgs(inputs) {
|
||||||
if (inputs.network) {
|
if (inputs.network) {
|
||||||
args.push('--network', inputs.network);
|
args.push('--network', inputs.network);
|
||||||
}
|
}
|
||||||
if (inputs.push) {
|
if (inputs.quiet) {
|
||||||
args.push('--push');
|
args.push('--quiet');
|
||||||
}
|
}
|
||||||
return args;
|
return args;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue