From 5167aad15c4548c81b54057ad5c2511a59bc0550 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 17 Aug 2022 15:16:17 +0200 Subject: [PATCH] GitLab CI: limit lifetime of artifacts to 8 days ... to save storage space. --- .gitlab-ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5d5013fd4..7c3476dd1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,9 +5,13 @@ # (1) Continuously building FLTK with one or more build systems. # (2) Generating current HTML documentation and putting it online. # -# The documentation will be viewable at: +# The HTML documentation will be viewable at: # -# https://fltk.gitlab.io/fltk/ +# https://fltk.gitlab.io/fltk/ +# +# The PDF documentation will be viewable at: +# +# https://fltk.gitlab.io/fltk/fltk.pdf # # Details of this script: # @@ -93,3 +97,5 @@ pages: artifacts: paths: - public + expire_in: + - 8 days