From 806baa93294cee0cac979f4e0d2a94cd7ec04d43 Mon Sep 17 00:00:00 2001 From: Juan Eugenio Abadie Date: Mon, 16 Oct 2023 00:49:38 +0200 Subject: [PATCH] Update docs --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b38b937..060f3e1 100644 --- a/README.md +++ b/README.md @@ -50,13 +50,6 @@ or - **stages_image_name**: Set custom name for stages. Useful if using a job matrix (default: `$image_name-stages)`. -- **build_extra_args**: Extra params for `docker build` (e.g. `"--build-arg=hello=world"`). - > :star2: New in v5.11.0: If you need extra args with newlines or spaces, use json format like this: - `build_extra_args: '{"--build-arg": "myarg=Hello\nWorld"}'` - - > :star2: If you need multiple args with same key, use an array as the value of the key like this: - `build_extra_args: '{"--build-arg": ["foo=bar", "one=two"]}'` - - **push_image_and_stages**: Test a command before pushing. Use `false` to not push at all (default: `true`). This input also supports 2 special values, which are useful if your workflow can be triggered by different events: @@ -74,6 +67,13 @@ or - **dockerfile**: Dockerfile filename path (default: `"$context"/Dockerfile`). +- **build_extra_args**: Extra params for `docker build` (e.g. `"--build-arg=hello=world"`). + > :star2: New in v5.11.0: If you need extra args with newlines or spaces, use json format like this: + `build_extra_args: '{"--build-arg": "myarg=Hello\nWorld"}'` + + > :star2: If you need multiple args with same key, use an array as the value of the key like this: + `build_extra_args: '{"--build-arg": ["foo=bar", "one=two"]}'` + ## Outputs - **FULL_IMAGE_NAME**: Full name of the Docker Image with the Registry (if provided) and Namespace included.