Fix array index in echo statement

Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com>
This commit is contained in:
Shakar Bakr 2024-03-06 13:22:21 +03:00
parent e226c336ff
commit 4bf54d5dc5
No known key found for this signature in database
GPG Key ID: DA55A26823AE3C28

View File

@ -93,7 +93,7 @@ runs:
# echo "Extracted element: $extracted_element"
jsonOutput=$(echo "$json" | jq -r '.tags')
echo "fromJson: $jsonOutput[0]"
echo "fromJson: ${jsonOutput[0]}"
echo "tag=$extracted_element" >> $GITHUB_OUTPUT
env: