Update 'Jenkinsfile'

This commit is contained in:
Wojciech Mikołajski 2023-04-14 03:32:30 +02:00
parent 3b4e88f9ca
commit 76bdf0e9e4

9
Jenkinsfile vendored
View File

@ -4,14 +4,15 @@ pipeline {
parameters { parameters {
string ( string (
defaultValue: 'login', defaultValue: 'login',
description: 'Kaggle username', description: 'Login to Kaggle',
name: 'KAGGLE_USERNAME', name: 'KAGGLE_USERNAME',
trim: false trim: false
), )
password ( password (
defaultValue: '', defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', description: 'Password to Kaggle',
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY',
trim: false
) )
} }
stages { stages {