Update Paper

This commit is contained in:
2023-03-06 00:59:08 -06:00
parent ec540fe8cf
commit 785a0df912
3 changed files with 11 additions and 6 deletions

13
Jenkinsfile vendored
View File

@ -30,11 +30,16 @@ pipeline {
branch "1.19.3"
}
steps {
withCredentials([usernamePassword(credentialsId: '8150559b-ec1d-41bd-a576-aa668a52c1ba', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
withGradle {
sh "./gradlew :Scissors-API:publish --no-daemon"
try {
withCredentials([usernamePassword(credentialsId: 'scissors-ci', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
withGradle {
sh "./gradlew :Scissors-API:publish --no-daemon"
}
}
}
true
} catch (_) {
false
}
}
}
}