40 lines
724 B
Groovy
40 lines
724 B
Groovy
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 {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|