From 7d052235c57878682e6d60a5be5e2cef7000f06a Mon Sep 17 00:00:00 2001 From: rschoene <rene.schoene@tu-dresden.de> Date: Fri, 28 Jul 2023 17:09:59 +0200 Subject: [PATCH] Add CI artifact expiration --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 667c03e..e834701 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -84,6 +84,7 @@ ragdoc_build: artifacts: paths: - "data/" + expire_in: 1 week ragdoc_view: image: @@ -100,6 +101,7 @@ ragdoc_view: artifacts: paths: - "pages/docs/ragdoc" + expire_in: 1 week build_cloc: image: "alpine:latest" @@ -112,6 +114,7 @@ build_cloc: artifacts: paths: - pages/docs/cloc.md + expire_in: 1 week .pages-template: image: python:3.10.0-bullseye @@ -136,6 +139,7 @@ pages: artifacts: paths: - public/ + expire_in: 1 week only: - master @@ -149,6 +153,7 @@ pages-dev: - public/ reports: dotenv: build.env + expire_in: 1 week only: - dev -- GitLab