Files
earvin ee29822de8
dyb-tech.com/LaLiga-BackEnd/pipeline/head This commit looks good
Fix braces
2024-05-21 14:52:00 +02:00

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