steps:
- script: |
echo "good"
echo "nice"
This doesn't work. It prints 'good' successfully, but doesn't print nice and shows echo "nice" so the final output is
good echo 'nice'
I tried to remove | after the script: but still no luck. Any idea? I am running this on ubuntu machine.
