From 23c5c26472d2271a41b1ad26b3d65c6715e2ac5c Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Thu, 22 Jan 2026 23:43:59 +0100 Subject: [PATCH] Artifacts opslaan --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 2aa446c..109719b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,8 @@ pipeline { steps { echo 'Starting build step...' sh 'latexmk -pdf -outdir=out main_text.tex' + + archiveArtifacts artifacts: 'out/main_text.pdf' } }