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