diff --git a/Jenkinsfile b/Jenkinsfile index 2db85df..3dc101e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,22 +1,24 @@ pipeline { agent any - parameters { - string( - defaultValue: 'mikolaj2', - description: 'Kaggle username', - name: 'KAGGLE_USERNAME', - trim: false - ) - password( - defaultValue: '', - description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', - name: 'KAGGLE_KEY' - ) - string( - defaultValue: '', - description: 'Value for head command', - name: 'CUTOFF' - ) + properties { + parameters { + string( + defaultValue: 'mikolaj2', + description: 'Kaggle username', + name: 'KAGGLE_USERNAME', + trim: false + ) + password( + defaultValue: '', + description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', + name: 'KAGGLE_KEY' + ) + string( + defaultValue: '', + description: 'Value for head command', + name: 'CUTOFF' + ) + } } environment { KAGGLE_USERNAME="$params.KAGGLE_USERNAME"