diff --git a/RELEASES.md b/RELEASES.md index d21e916..120fd4c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -7,4 +7,8 @@ ### v1.1.0 - Permission error fix -- Readme updates \ No newline at end of file +- Readme updates + +### v1.2.0 + +- Added support for escaped spaces \ No newline at end of file diff --git a/action.yml b/action.yml index d17a570..2ff6f38 100644 --- a/action.yml +++ b/action.yml @@ -25,13 +25,13 @@ inputs: required: false build_args: description: | - Optional build arguments. Space-separated. e.g. + Optional build arguments. Space-separated, escape space if used within single arg. e.g. MY_ENV_VAR=Test MY_ENV_VAR2=Test2 required: false extra_args: description: | - Extra args to be passed to podman. Space-separated. e.g. - -e=MY_ENV=Test -e=MY_ENV=Test2 -e MY_ENV="Var\ with\ spaces" + Extra args to be passed to podman. Space-separated, escape space if used within single arg. e.g. + -e=MY_ENV=Test -e=MY_ENV=Test2 -e MY_ENV=Var\ with\ spaces required: false dockerfile: description: Path to the Dockerfile. If set, build step is performed.