diff --git a/Jenkinsfile b/Jenkinsfile index d442667..bd8b270 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,7 +70,11 @@ pipeline { docker { image 'richardx/pyinstaller-linux:python2' } + post { + success { + archiveArtifacts 'dist/LogfileMonitor' + } } steps { sh 'pyinstaller --onefile sources/LogfileMonitor.py' @@ -79,4 +83,4 @@ pipeline { } } } -} \ No newline at end of file +}