diff --git a/Jenkinsfile b/Jenkinsfile index 85899ee..570b561 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,7 @@ pipeline { description: 'Kaggle username' ) password ( - name: 'KAGGLE_KEY', + name: 'API_KEY', defaultValue: '', description: 'Kaggle API key' ) @@ -38,7 +38,7 @@ pipeline { steps { sh "chmod +x ./get_dataset.py" - sh "python ./get_dataset.py ${params.KAGGLE_USERNAME} ${params.KAGGLE_KEY}" + sh "python ./get_dataset.py ${params.KAGGLE_USERNAME} ${params.API_KEY}" archiveArtifacts artifacts: 'dataset.csv,df_train.csv,df_test.csv', onlyIfSuccessful: true } }