From 816d4f2f167df8f5301e34c54a97960ce7e1d64d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20=C5=81ysiak?= Date: Fri, 26 Apr 2019 11:38:25 +0200 Subject: [PATCH] v3 --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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') + } } } }