This commit is contained in:
Alicja Szulecka 2024-04-02 22:39:23 +02:00
parent ebef6c12cc
commit c0a52a095b

4
stats/Jenkinsfile vendored
View File

@ -19,8 +19,8 @@ pipeline {
} }
stage('Build') { stage('Build') {
steps { steps {
sh "python ./get_stats.py" sh "python3 ./get_stats.py"
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true archiveArtifacts artifacts: 'stats.txt', onlyIfSuccessful: true
} }
} }
} }