test.repo.2/Jenkinsfile
2025-10-14 17:06:17 -03:00

12 lines
No EOL
175 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo "🔨 Building branch: staging"
}
}
}
}