Skip to content

Commit

Permalink
fix: move ids to var
Browse files Browse the repository at this point in the history
  • Loading branch information
pogromistik committed Jan 12, 2023
1 parent 240c48b commit 8e8c7f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}' \
Expand Down

0 comments on commit 8e8c7f0

Please sign in to comment.