From 3aec4efc9f24b96d36237bb7c125d35c98bd8b54 Mon Sep 17 00:00:00 2001 From: eliyabar <13337543+eliyabar@users.noreply.github.com> Date: Tue, 18 Jul 2023 20:08:05 +0300 Subject: [PATCH] Update action.yml fix delimiter --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f88aecc..1a04f14 100644 --- a/action.yml +++ b/action.yml @@ -40,7 +40,7 @@ runs: id: run_preevy run: | # Convert the docker-compose-yaml-paths input to an env var - file_paths=${{ inputs.docker-compose-yaml-paths }} + IFS=',' read -ra file_paths <<< ${{ inputs.docker-compose-yaml-paths }} echo "Docker file paths ${file_paths}" # Initialize the joined preevy paths string joined_paths=""