From c06c8b36dab71b84cc64bb7028ca2e17bd92df61 Mon Sep 17 00:00:00 2001 From: jannisp Date: Wed, 11 Aug 2021 11:10:08 +0200 Subject: [PATCH] Use correct filenames --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index da57394..007a085 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,14 +4,14 @@ node { } stage('Build PDF') { - sh 'pdflatex *.tex' + sh 'pdflatex Mathematik-V-ZF.tex' } stage('Archive PDF') { - archiveArtifacts artifacts: '*.pdf', followSymlinks: false + archiveArtifacts artifacts: 'Mathematik-V-ZF.pdf', followSymlinks: false } stage('Publish PDF') { - sh 'scp -i /root/.ssh/id_rsa *.pdf jannis@192.168.178.45:/var/www/html/download/latex-previews/mathematik-v-zf.pdf' + sh 'scp -i /root/.ssh/id_rsa Mathematik-V-ZF.pdf jannis@192.168.178.45:/var/www/html/download/latex-previews/mathematik-v-zf.pdf' } } \ No newline at end of file