From 6f6072dbd09b267c38fb83ea1689074e1882a379 Mon Sep 17 00:00:00 2001 From: IThundxr Date: Fri, 28 Feb 2025 19:35:36 -0500 Subject: [PATCH] undo jenkins changes --- Jenkinsfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1270df1889..29d85b7dbd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,8 +23,14 @@ pipeline { stage('Build') { steps { - echo 'Building project.' - sh './gradlew build publish --stacktrace --warn' + + withCredentials([ + file(credentialsId: 'build_secrets', variable: 'ORG_GRADLE_PROJECT_secretFile') + ]) { + + echo 'Building project.' + sh './gradlew build publish --stacktrace --warn' + } } } }