pipeline { agent any stages { stage('checkout: Check out from version control') { steps { git 'https://git.wmi.amu.edu.pl/s434788/ium_434700' } } stage('sh: Shell Script') { steps { sh 'chmod +x download.sh' sh './download.sh' } } stage('archiveArtifacts') { steps { archiveArtifacts 'top.csv' archiveArtifacts 'netflix_titles.csv' } } } }