Skip to content

Commit 2d69f28

Browse files
committed
Fix CI pipeline
1 parent e1aa975 commit 2d69f28

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ pipeline {
55
}
66
agent any
77
environment {
8-
IMAGE_NAME = nginx-proxy-manager
9-
TEMP_IMAGE_NAME = nginx-proxy-manager-build_${BUILD_NUMBER}
10-
}
8+
IMAGE_NAME = "nginx-proxy-manager"
9+
TEMP_IMAGE_NAME = "nginx-proxy-manager-build_${BUILD_NUMBER}"
10+
}
1111
stages {
1212
stage('Prepare') {
1313
steps {
@@ -37,9 +37,9 @@ node-prune'''
3737
}
3838
}
3939
stage('Build') {
40-
steps {
41-
def TAG_VERSION = getPackageVersion()
40+
def TAG_VERSION = getPackageVersion()
4241

42+
steps {
4343
sh '''docker build -t $TEMP_IMAGE_NAME .
4444
exit $?'''
4545
}

0 commit comments

Comments
 (0)