fix jenkinsfile merge conflict and update to shebang

This commit is contained in:
Nick Craig
2023-05-03 11:14:52 -04:00
parent 3a72c68410
commit ad8c8826b3

4
Jenkinsfile vendored
View File

@@ -34,7 +34,7 @@ pipeline {
} }
steps { steps {
script { script {
env.BUILDX_PUSH_TAGS = "-t docker.io/${IMAGE}:${BUILD_VERSION} -t docker.io/${IMAGE}:${MAJOR_VERSION} -t docker.io/${IMAGE}:latest" buildxPushTags = "-t docker.io/${IMAGE}:${BUILD_VERSION} -t docker.io/${IMAGE}:${MAJOR_VERSION} -t docker.io/${IMAGE}:latest"
} }
} }
} }
@@ -47,7 +47,7 @@ pipeline {
steps { steps {
script { script {
// Defaults to the Branch name, which is applies to all branches AND pr's // Defaults to the Branch name, which is applies to all branches AND pr's
env.BUILDX_PUSH_TAGS = "-t docker.io/${IMAGE}:github-${BRANCH_LOWER}" buildxPushTags = "-t docker.io/${IMAGE}:github-${BRANCH_LOWER}"
} }
} }
} }