From 1a5b0ee26da2837d6179b9f030faea3ec677768c Mon Sep 17 00:00:00 2001 From: Foat Akhmadeev Date: Wed, 19 Mar 2025 20:45:32 +0300 Subject: [PATCH] upd releases --- RELEASES.md | 6 +++++- action.yml | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) 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.