Make artifact download names distinct
Problem/Motivation
Jobs that produce artifacts for download all currently use the gitlab default name of 'artifacts' which becomes 'atifacts.zip' when the file is downloaded. When working on several jobs in the pipeline, having all the downloads being named slows the download process, as each needs to be manually renamed.
Proposed resolution
Add the job name into the artifact filename, by adding the name: keyword
artifacts:
name: artifacts-$CI_JOB_NAME_SLUG
The $CI_JOB_NAME_SLUG is the same as $CI_JOB_NAME except that spaces are converted into - to gives a filename without spaces.