From 0f705fdb43c80e68a83b57515711bd8ce487ce13 Mon Sep 17 00:00:00 2001 From: Eidolon Date: Thu, 16 May 2024 15:42:04 -0500 Subject: [PATCH] Expire artifacts after 1 days by default There's no need to let these artifacts pile up since the only ones that will be relevant to non-programmers are the latest from any given ref. --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af0afaa19..5a5fa92ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,3 +8,7 @@ variables: stages: - build + +default: + artifacts: + expire_in: 1 day