diff --git a/Jenkinsfile b/Jenkinsfile index 89d0989..9aa0d20 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,9 @@ pipeline { } sh 'git checkout' sh 'python3 script.py' - archiveArtifacts('build/test-output/**/*.html') + publishers { + archiveArtifacts('build/test-output/**/*.html') + } } } }