From d7ce3c3dac0e9e575d7f102be8fdcea20d707710 Mon Sep 17 00:00:00 2001 From: Gabriel Forien Date: Tue, 2 Aug 2022 18:23:38 +0200 Subject: [PATCH] docs(README): clarify default value for 'target' Signed-off-by: Gabriel Forien --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f21822f..a96f6b6 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Following inputs can be used as `step.with` keys | `builder` | String | Builder instance (see [setup-buildx](https://github.com/docker/setup-buildx-action) action) | | `files` | List/CSV | List of [bake definition files](https://github.com/docker/buildx/blob/master/docs/reference/buildx_bake.md#file) | | `workdir` | String | Working directory of execution | -| `targets` | List/CSV | List of bake targets | +| `targets` | List/CSV | List of bake targets (if empty, Buildx Bake will build target `default`) | | `no-cache` | Bool | Do not use cache when building the image (default `false`) | | `pull` | Bool | Always attempt to pull a newer version of the image (default `false`) | | `load` | Bool | Load is a shorthand for `--set=*.output=type=docker` (default `false`) |