pipeline { agent any stages { stage('Create PDF from Latex') { steps { echo 'Building..' sh 'pdflatex cv_denes_matetelki.tex' archiveArtifacts artifacts: 'cv_denes_matetelki.pdf', fingerprint: true } } } }