Update Jenkinsfile

This commit is contained in:
s464903 2024-03-20 12:49:31 +01:00
parent 26885861e1
commit f4f9c38fcc

2
Jenkinsfile vendored
View File

@ -4,6 +4,7 @@ pipeline {
stages { stages {
stage('Preparation') { stage('Preparation') {
steps { steps {
properties([
parameters([ parameters([
string( string(
defaultValue: 'jakubbg', defaultValue: 'jakubbg',
@ -16,6 +17,7 @@ pipeline {
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
) )
])
]) ])
} }
} }