fix triggered vars

This commit is contained in:
Roberto Cirillo 2022-04-15 17:01:52 +02:00
parent 7173d4625c
commit 939560d5f2
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -52,7 +52,7 @@ pipeline {
}
}
steps {
echo "New deploy of ${TRIGGER_JOB} - ${TRIGGER_VERSION} appended to the deploy file"
echo "New deploy of $TRIGGER_JOB - $TRIGGER_VERSION appended to the deploy file"
}
}
stage('Deploy from job ') {
@ -64,7 +64,7 @@ pipeline {
}
}
steps {
echo "New deploy of ${TRIGGER_JOB} - ${TRIGGER_VERSION}"
echo "New deploy of $TRIGGER_JOB - $TRIGGER_VERSION"
}
}