fix triggered vars

This commit is contained in:
Roberto Cirillo 2022-04-15 17:13:43 +02:00
parent 939560d5f2
commit cfcab49208
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

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