Files
LaLiga-BackEnd/Jenkinsfile
T
earvin 8d499a5e9a
dyb-tech.com/LaLiga-BackEnd/pipeline/head There was a failure building this commit
Fix Name
2024-05-21 13:37:36 +02:00

11 lines
265 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"
}
}
}
}
}