I have build, test and deploy jobs in gitlab-ci file. The artifact created at the test job and should be passed to deploy job. I see that the artifacts downloading in the console (See the image) but I can't find it at the specified path. So where does the gitlab-runner save the artifacts. How to use them in subsequent jobs?
The deploy job is dependent upon test job via dependencies tag.image showing artifacts downloading
.gitlab-ci.ymlfile as well, but when using artifacts you should have set apath. The job using the artifacts would see the files in exactly the same place as the path you specified. - Rekovni