Add publishing for Scissors API

This commit is contained in:
2022-07-05 17:33:45 -05:00
parent bca6da00e8
commit f66a491861
2 changed files with 43 additions and 2 deletions

12
Jenkinsfile vendored
View File

@ -25,6 +25,18 @@ pipeline {
}
}
}
stage('publish') {
when {
branch "1.17.1"
}
steps {
withCredentials([usernamePassword(credentialsId: '8150559b-ec1d-41bd-a576-aa668a52c1ba', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
withGradle {
sh "./gradlew :Scissors-API:publish --no-daemon"
}
}
}
}
}
post {
always {