I have the following in my pipeline:
- apt-get update && apt-get install zip -y
- zip -r api.zip MyApp/**
- ls .
artifacts:
- api.zip
In the log files, I see the files being zipped and the `ls .` step does show an api.zip file. But it doesn't appear in the Artifacts tab nor is it available in subsequent steps. Any thoughts on why?