Echo some environment variables for testing
Some checks failed
Amarillo/amarillo-gitea/amarillo-core/pipeline/head There was a failure building this commit

This commit is contained in:
Csaba 2024-01-18 13:36:50 +01:00
parent fddb0093bb
commit 984996dbb4

6
Jenkinsfile vendored
View file

@ -14,6 +14,12 @@ pipeline {
DEPLOY_SECRET = credentials('AMARILLO-JENKINS-DEPLOY-SECRET') DEPLOY_SECRET = credentials('AMARILLO-JENKINS-DEPLOY-SECRET')
} }
stages { stages {
stage('Echo environment variables'){
echo "BRANCH_NAME: ${BRANCH_NAME}"
echo "JOB_NAME: ${JOB_NAME}"
echo "BRANCH_IS_PRIMARY ${BRANCH_IS_PRIMARY}"
echo "TAG_NAME: ${TAG_NAME}"
}
stage('Build docker image') { stage('Build docker image') {
steps { steps {
echo 'Building image' echo 'Building image'