Fixed stage steps
All checks were successful
Amarillo/amarillo-gitea/amarillo-core/pipeline/head This commit looks good

This commit is contained in:
Csaba 2024-01-18 13:37:48 +01:00
parent 984996dbb4
commit c8b8aa8b36

10
Jenkinsfile vendored
View file

@ -15,10 +15,12 @@ pipeline {
} }
stages { stages {
stage('Echo environment variables'){ stage('Echo environment variables'){
echo "BRANCH_NAME: ${BRANCH_NAME}" steps {
echo "JOB_NAME: ${JOB_NAME}" echo "BRANCH_NAME: ${BRANCH_NAME}"
echo "BRANCH_IS_PRIMARY ${BRANCH_IS_PRIMARY}" echo "JOB_NAME: ${JOB_NAME}"
echo "TAG_NAME: ${TAG_NAME}" echo "BRANCH_IS_PRIMARY ${BRANCH_IS_PRIMARY}"
echo "TAG_NAME: ${TAG_NAME}"
}
} }
stage('Build docker image') { stage('Build docker image') {
steps { steps {