test.repo.2/Jenkinsfile

12 lines
175 B
Text
Raw Normal View History

2025-10-14 17:03:33 -03:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo "🔨 Building branch: staging"
}
}
2025-10-14 17:06:17 -03:00
}
2025-10-14 17:03:33 -03:00
}