From 6e39ceaec0d9f801f27c564160c93223e39506a2 Mon Sep 17 00:00:00 2001
From: Andreas Romeyke <andreas.romeyke@slub-dresden.de>
Date: Mon, 18 Nov 2024 17:01:27 +0100
Subject: [PATCH] - artifacts path must be within project dir

---
 .gitlab-ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bc1a5af..10482f8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -158,10 +158,12 @@ create-debian-packages:
     - dpkg-buildpackage -uc -us
     - ls -lha ./
     - ls -lha ../
+    - mkdir -p artifacts/
+    - cp ../*.deb artifacts/
     #- cd ../ ; dh-make-perl ${CI_PROJECT_DIR}
   dependencies:
     - perl-unit-test-job
     - perl-quality-test-job
   artifacts:
     paths:
-      - ../*.deb
+      - artifacts/*.deb
-- 
GitLab