From 8e8c7f0097d7d83e7d3f55105dbd9a8273ee5d00 Mon Sep 17 00:00:00 2001 From: nadia Date: Thu, 12 Jan 2023 17:26:14 +0500 Subject: [PATCH] fix: move ids to var --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e61fa6b..2119cbf 100644 --- a/action.yml +++ b/action.yml @@ -25,7 +25,8 @@ runs: shell: bash run: | export IFS=";" - for id in '${{ inputs.ids }}'; do + ids='${{ inputs.ids }}' + for id in $ids; do curl --location --request POST '${{ inputs.url }}/app/rest/buildQueue' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer ${{ inputs.token }}' \