pipeline { agent any stages { stage('check for game updates') { steps { } } stage('download game') { steps { script { withCredentials([string(credentialsId: 'ssh_key-root_at_banana', variable: 'API_KEY')]) { sh "wget https://nexus.cloud.velha.casa/repository/static-hosted/peak-crack-files.zip" } } } } stage('patch game') { steps { } } stage('upload files') { steps { } } stage('notify') { steps { } } } }