Files
LaLiga-BackEnd/Jenkinsfile
T
earvin a2731a30bb
dyb-tech.com/LaLiga-BackEnd/pipeline/head There was a failure building this commit
Fix tabs
2024-05-21 14:26:51 +02:00

11 lines
264 B
Groovy

pipeline {
agent any {
stages {
stage('Show Branch Name and Project Name') {
steps {
echo "The job name its ${JOB_NAME} at project dyb-tech.com - Jenkins"
}
}
}
}
}