Public Access
1
0
mirror of https://github.com/docker/build-push-action.git synced 2026-01-27 15:13:10 +03:00

Use --builder

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2020-09-03 11:49:39 +02:00
parent b563df09ad
commit cf9301c704
4 changed files with 7 additions and 27 deletions

View File

@@ -106,6 +106,9 @@ async function getCommonArgs(inputs: Inputs): Promise<Array<string>> {
if (inputs.noCache) {
args.push('--no-cache');
}
if (inputs.builder) {
args.push('--builder', inputs.builder);
}
if (inputs.pull) {
args.push('--pull');
}