Remove artifacts after pipeline execution
Description
It's common to use artifacts to pass files from stage to stage (or I am doing it wrong ^^), for instance, a first stage could install vendor, and another could build , and another package a Docker image. In this case, you "artifact" ./vendor folder, but, you don't care of keeping it.
Proposal
artifacts:
expire_in: after
paths: ["vendor"]