IUM_03 - Jenkinsfile fix

This commit is contained in:
Paweł Łączkowski 2024-03-20 17:52:06 +01:00
parent de85067b5c
commit 7dd3ef78ff

2
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
stage('Download dataset') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}"]) {
sh "/download_dataset.sh $CUTOFF"
sh "./download_dataset.sh $CUTOFF"
archiveArtifacts artifacts: 'data.csv', onlyIfSuccessful: true
}
}