I have a private repository on gitlab.com that uses the CI function. Some of the CI jobs create artifact files that are stored. I just realized that artifacts are automatically deleted after one day, adding this to the CI configuration:
expire_in: 1 day
This works fine, however old artifacts will not be deleted (as expected). So my question is:
How to remove old artifacts or artifacts that do not expire? (on gitlab.com, without direct access to the server)
source
share