pipeline { agent any parameters{ string( defaultValue: 'mikolaj2', description: 'Kaggle username', name: 'KAGGLE_USERNAME' ) string( defaultValue: '20', description: 'Value for head command', name: 'CUTOFF' ) } stages { stage("Check out from version control") { steps { checkout scm } } stage("Shell Scripts") { steps { sh "chmod u+x ./startscript1.sh" sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh" archiveArtifacts 'data.txt' } } } }