test.repo/Jenkinsfile

12 lines
174 B
Text
Raw Permalink Normal View History

2025-10-13 14:58:18 -03:00
pipeline {
agent any
2025-10-13 15:37:07 -03:00
2025-10-13 16:20:18 -03:00
2025-10-13 14:58:18 -03:00
stages {
stage('Build') {
steps {
2025-10-13 14:59:38 -03:00
echo "🔨 Building branch: staging"
2025-10-13 14:58:18 -03:00
}
}
}
}