diff --git a/Jenkinsfile b/Jenkinsfile index b9e55e1..79e1ec9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,21 +1,19 @@ pipeline { agent any - options { - parameters {[ - string( - defaultValue: 'jakubbg', - description: 'Kaggle username', - name: 'KAGGLE_USERNAME', - trim: false - ), - password( - defaultValue: 'e42b293c818e4ecd7b9365ee037af428', - description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', - name: 'KAGGLE_KEY' - ) - ]} - } + parameters { + string( + defaultValue: 'jakubbg', + description: 'Kaggle username', + name: 'KAGGLE_USERNAME', + trim: false + ), + password( + defaultValue: 'e42b293c818e4ecd7b9365ee037af428', + description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', + name: 'KAGGLE_KEY' + ) + } stages { stage('Build') {