diff --git a/Jenkinsfile b/Jenkinsfile index e68c132..e4ad43d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,10 +43,17 @@ pipeline { mkarchiso -v -w "/tmp/archisotmp/work" -o /tmp/archisotmp/out "/tmp/archisotmp/server" + cp -rv /tmp/archisotmp/out ./out rm -rf /tmp/archisotmp ''' } } + + post { + always { + archiveArtifacts artifacts: "out/*.iso" + } + } } } } \ No newline at end of file