I have a loop that processes a list of items. Inside the loop, I make multiple HTTP requests and get some output from each item. I want to send all of these outputs to a final step after the loop finishes, which will then save everything to a single file.
However, my final step is only receiving the output from the very last item in the loop, not from all of them.
Could someone help me figure out what I’m doing wrong?