Files
2026-05-30 22:48:53 -03:00

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 {
}
}
}
}