No secrets here

- Remove withCredentials block in Build
This commit is contained in:
Jozufozu 2025-01-26 15:30:08 -08:00
parent 6a32b30245
commit d5963455dc

8
Jenkinsfile vendored
View file

@ -23,19 +23,11 @@ pipeline {
stage('Build') {
steps {
withCredentials([
file(credentialsId: 'build_secrets', variable: 'ORG_GRADLE_PROJECT_secretFile'),
//file(credentialsId: 'java_keystore', variable: 'ORG_GRADLE_PROJECT_keyStore'),
file(credentialsId: 'gpg_key', variable: 'ORG_GRADLE_PROJECT_pgpKeyRing')
]) {
echo 'Building project.'
sh './gradlew build publish --stacktrace --warn'
}
}
}
}
post {