From c0a52a095b23e3dbdc8839031b5c9971bead8541 Mon Sep 17 00:00:00 2001 From: Alicja Szulecka <73056579+AliSzu@users.noreply.github.com> Date: Tue, 2 Apr 2024 22:39:23 +0200 Subject: [PATCH] fix --- stats/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stats/Jenkinsfile b/stats/Jenkinsfile index 4cf6262..2bbfc60 100644 --- a/stats/Jenkinsfile +++ b/stats/Jenkinsfile @@ -19,8 +19,8 @@ pipeline { } stage('Build') { steps { - sh "python ./get_stats.py" - archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true + sh "python3 ./get_stats.py" + archiveArtifacts artifacts: 'stats.txt', onlyIfSuccessful: true } } }