From ce09f8d0f8fc9053ac4806f2231ee9625a9ed473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Wed, 25 Mar 2026 18:09:02 +0100 Subject: [PATCH] Extend artifact lifetime for Cloudsmith build jobs The commit.txt file produced by each Cloudsmith build job is required to run the corresponding publication job. Therefore, the artifact lifetime for the former must be long enough to prevent the file from expiring before the publication job is run. Set the lifetime of the artifacts created by Cloudsmith build jobs to one month to ensure that the publication jobs can access them. --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f00fdb0452..72d62bfdbb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2010,6 +2010,7 @@ rpms-cloudsmith-build: artifacts: paths: - commit.txt + expire_in: "1 month" rpms-cloudsmith-build-private: <<: *rpm_build_job_private @@ -2020,6 +2021,7 @@ rpms-cloudsmith-build-private: artifacts: paths: - commit.txt + expire_in: "1 month" # Publish Cloudsmith packages