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

12 lines
No EOL
174 B
Groovy

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