Use correct filenames
This commit is contained in:
parent
5f162223e9
commit
c06c8b36da
1 changed files with 3 additions and 3 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -4,14 +4,14 @@ node {
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build PDF') {
|
stage('Build PDF') {
|
||||||
sh 'pdflatex *.tex'
|
sh 'pdflatex Mathematik-V-ZF.tex'
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Archive PDF') {
|
stage('Archive PDF') {
|
||||||
archiveArtifacts artifacts: '*.pdf', followSymlinks: false
|
archiveArtifacts artifacts: 'Mathematik-V-ZF.pdf', followSymlinks: false
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Publish PDF') {
|
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'
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue