From dbed8228d8fbd0cf440d4edbc1a9d32bafff14aa Mon Sep 17 00:00:00 2001 From: szeyu Date: Wed, 29 Oct 2025 18:04:07 +0800 Subject: [PATCH] docs: update README to clarify mapping of quiet input to --quiet Signed-off-by: szeyu --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33cbe5d..bfb8671 100644 --- a/README.md +++ b/README.md @@ -248,7 +248,7 @@ The following inputs can be used as `step.with` keys: | `provenance` | Bool/String | Generate [provenance](https://docs.docker.com/build/attestations/slsa-provenance/) attestation for the build (shorthand for `--attest=type=provenance`) | | `pull` | Bool | Always attempt to pull all referenced images (default `false`) | | `push` | Bool | [Push](https://docs.docker.com/engine/reference/commandline/buildx_build/#push) is a shorthand for `--output=type=registry` (default `false`) | -| `quiet` | Bool | Suppress build output (maps to `--quiet`) (default `false`) | +| `quiet` | Bool | Suppress build output (maps to [`--quiet`](#inputs)) (default `false`) | | `sbom` | Bool/String | Generate [SBOM](https://docs.docker.com/build/attestations/sbom/) attestation for the build (shorthand for `--attest=type=sbom`) | | `secrets` | List | List of [secrets](https://docs.docker.com/engine/reference/commandline/buildx_build/#secret) to expose to the build (e.g., `key=string`, `GIT_AUTH_TOKEN=mytoken`) | | `secret-envs` | List/CSV | List of [secret env vars](https://docs.docker.com/engine/reference/commandline/buildx_build/#secret) to expose to the build (e.g., `key=envname`, `MY_SECRET=MY_ENV_VAR`) |