From 7c53b87aaae8e15c0912e1b205ff11387bf8be96 Mon Sep 17 00:00:00 2001
From: Stian Lyng <stianlyng@protonmail.com>
Date: Wed, 3 May 2023 12:07:35 +0200
Subject: [PATCH] added target/site to artifacts

---
 .gitlab-ci.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d3c547eb..eb69c5a3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,12 +18,15 @@ maven-build:
 run-tests:
   stage: test
   script:
-    - mvn jacoco:prepare-agent test jacoco:report verify
+    - mvn test
 
 deploy-jar:
   stage: deploy
   script:
-    - mvn install
+    - mvn install jacoco:report
+  artifacts:
+    paths:
+      - target/site/jacoco
 
 jacoco-report:
   stage: pages
-- 
GitLab