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' } } }