Using artifacts

Hi

After the first stage (build) in my .gitlab-ci.yml file creates an artifact, i want to use that artifact in my next stage (deploy), specifically in a docker container. I notice:

Downloading artifacts from coordinator... ok        id=1015 responseStatus=200 OK token=xxxxxx

How can i make reference to any artifacts that are downloaded? Currently as part of my deploy stage i have this in my script section, but it seems like an additional and unnecessary step

cp bin/Debug/netcoreapp1.1/core.dll .

This is something I would be very interested in too!

@dmce did you find a solution in the meantime?