Files
cloudsave/jenkinsfile
thelilfrog 7bf88d9d8c
All checks were successful
CloudSave/pipeline/head This commit looks good
Add jenkinsfile
2025-08-29 14:37:05 +02:00

11 lines
147 B
Plaintext

pipeline {
agent any
stages {
stage('Build') {
steps {
sh './build.sh'
}
}
}
}