GitLab CI CD artifacts not being carried forward to next step. [Answered]I'm having a hard time carrying artifacts from one stop of the GitLab CI/CD pipeline to the next.
Anyone is aware of pitfalls or details I might be missing?
In the first step, I have this
artifacts:
paths:
- $CI_PROJECT_DIR/MyProjectName/bin/Release/MyProjectName.*.nupkg
expire_in: 1 week
And in a further step, anything after
$CI_PROJECT_DIR/MyProjectName
, starting at the
bin
folder isn't there even though artifacts are supposed to be carried forward?