Add JenkinsFile

This commit is contained in:
Diego de la Iglesia Regueiro 2024-05-21 13:36:33 +02:00
parent 0760c338e4
commit e5cebcee08
1 changed files with 11 additions and 0 deletions

11
JenkinsFile Normal file
View File

@ -0,0 +1,11 @@
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"
}
}
}
}
}