fix param name

This commit is contained in:
Sheaza 2024-05-14 20:59:28 +02:00
parent 2c31d1eb26
commit 8b791ec863
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -30,7 +30,7 @@ pipeline {
}
stage('Download dataset') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.API_KEY}"]) {
sh "kaggle datasets download -d nikhil7280/student-performance-multiple-linear-regression --unzip"
}
}