Update Jenkinsfile

This commit is contained in:
Telesphoreo 2023-06-13 15:20:41 -05:00 committed by GitHub
parent f33f6d2de8
commit 76155af1ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 19 deletions

19
Jenkinsfile vendored
View File

@ -29,25 +29,6 @@ pipeline {
}
}
}
stage('publish') {
when {
branch "1.17.1"
}
steps {
script {
try {
withCredentials([usernamePassword(credentialsId: 'scissors-ci', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
withGradle {
sh "./gradlew :Scissors-API:publish --no-daemon"
}
}
true
} catch (_) {
false
}
}
}
}
}
post {
always {