From 59e4f8e854a608ba9c5d8592315c3e3691cbd7b1 Mon Sep 17 00:00:00 2001 From: bmikler17 <105586737+bmikler17@users.noreply.github.com> Date: Tue, 6 Jan 2026 13:54:02 +0200 Subject: [PATCH 1/2] Fix formatting issues in Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d350d01..ab0f9f9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ library 'aws-access-keys@master' pipeline { - agent { label 'ubuntu-build-slave-java17' } + agent { label 'ubuntu-build-slave-java17' } parameters { string(name: 'SDK_RELEASE_TAG', defaultValue: '', description: 'Supply version to deploy to repo1 (e.g., 4.4.100). Leave empty to deploy to reporting-new-nexus.') } @@ -105,4 +105,4 @@ def buildCode() { } } echo "Current build currentResult (buildCode): ${currentBuild.currentResult}" -} \ No newline at end of file +} From fec4a6b763f71b5ed9eb661291b56fa1154793cf Mon Sep 17 00:00:00 2001 From: bmikler17 Date: Tue, 6 Jan 2026 16:38:03 +0200 Subject: [PATCH 2/2] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ab0f9f9..a75f3f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -92,7 +92,7 @@ def buildCode() { // Git tag release (instruction #5: artifact flow) sh(script: "git tag ${artifactTag} ${commitHash}") withCredentials([usernamePassword(credentialsId: '2cb048f3-6369-4220-bbb7-2668527a8c22', passwordVariable: 'GIT_TOKEN', usernameVariable: 'GIT_USERNAME')]) { - sh "git push https://${GIT_USERNAME}:${GIT_TOKEN}@${repositoryUrl} --tags" + sh "git push https://${GIT_USERNAME}:${GIT_TOKEN}@${repositoryUrl} --tags" } } else { echo "No deployment: branch=${BRANCH_NAME}"