test.repo/Jenkinsfile
Matias Pou fa4abcd024
All checks were successful
multibranch.test/pipeline/head This commit looks good
test push
2025-10-13 16:20:18 -03:00

12 lines
No EOL
174 B
Groovy

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