Files
LaLiga-FrontEnd/Jenkinsfile
T
earvin e09eda6658
dyb-tech.com/LaLiga-FrontEnd/pipeline/head This commit looks good
Fix braces
2024-05-21 14:51:37 +02:00

10 lines
257 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"
}
}
}
}