From 41efd14430140d4f06e306734b8020687b960b69 Mon Sep 17 00:00:00 2001
From: Martin Weise <martin.weise@tuwien.ac.at>
Date: Mon, 20 Jan 2025 14:47:17 +0100
Subject: [PATCH] More debug

Signed-off-by: Martin Weise <martin.weise@tuwien.ac.at>
---
 .gitlab-ci.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 61e417ddec..d8247d0087 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -88,6 +88,11 @@ lint-helm-chart:
     - helm lint ./helm/dbrepo
     - helm schema -input ./helm/dbrepo/values.yaml -output ./helm/dbrepo/values.schema.json
     - diff ./CI_values.schema.json ./helm/dbrepo/values.schema.json
+  artifacts:
+    when: always
+    paths:
+      - ./helm/dbrepo/values.schema.json
+    expire_in: 1 days
 
 lint-helm-readme:
   image: docker.io/node:${NODE_VERSION}-alpine${ALPINE_VERSION}
@@ -103,6 +108,11 @@ lint-helm-readme:
   script:
     - ./readme-generator --readme ./helm/dbrepo/README.md --values ./helm/dbrepo/values.yaml
     - diff ./CI_README.md ./helm/dbrepo/README.md
+  artifacts:
+    when: always
+    paths:
+      - ./helm/dbrepo/README.md
+    expire_in: 1 days
 
 lint-metadata-schema:
   image: docker.io/alpine:${ALPINE_VERSION}
-- 
GitLab