Update Jenkinsfile

This commit is contained in:
Telesphoreo 2022-04-07 16:09:22 -05:00
parent 890f847c2f
commit 53c888aed1

2
Jenkinsfile vendored
View File

@ -13,12 +13,14 @@ pipeline {
branch "master" branch "master"
} }
steps { steps {
withCredentials([usernamePassword(credentialsId: '85b7099f-2e65-461e-b2ce-124edec41ed6', passwordVariable: 'plexPassword', usernameVariable: 'plexUser')]) {
withGradle { withGradle {
sh "./gradlew publish --no-daemon" sh "./gradlew publish --no-daemon"
} }
} }
} }
} }
}
post { post {
always { always {
archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true