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