undo jenkins changes

This commit is contained in:
IThundxr 2025-02-28 19:35:36 -05:00
parent 2e40bb296c
commit 6f6072dbd0
Failed to generate hash of commit

6
Jenkinsfile vendored
View file

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