Files
LaLiga-FrontEnd/Jenkinsfile
T
earvin 5e81de98c1
dyb-tech.com/LaLiga-FrontEnd/pipeline/head There was a failure building this commit
Fix Name
2024-05-21 13:37:15 +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"
}
}
}
}
}