Start publishing to Jenkins

This commit is contained in:
Telesphoreo 2022-12-11 14:11:37 -06:00
parent 2b7e841786
commit 840ea83089
No known key found for this signature in database
GPG Key ID: B5CDDEBA526C0130
2 changed files with 3 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -27,7 +27,7 @@ pipeline {
} }
stage('publish') { stage('publish') {
when { when {
branch "skip" branch "1.19.3"
} }
steps { steps {
withCredentials([usernamePassword(credentialsId: '8150559b-ec1d-41bd-a576-aa668a52c1ba', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) { withCredentials([usernamePassword(credentialsId: '8150559b-ec1d-41bd-a576-aa668a52c1ba', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
@ -40,7 +40,7 @@ pipeline {
} }
post { post {
always { always {
// archiveArtifacts artifacts: 'build/libs/Scissors-paperclip-*.jar', fingerprint: true archiveArtifacts artifacts: 'build/libs/Scissors-paperclip-*.jar', fingerprint: true
junit 'Scissors-Server/build/test-results/test/*.xml' junit 'Scissors-Server/build/test-results/test/*.xml'
junit 'Scissors-API/build/test-results/test/*.xml' junit 'Scissors-API/build/test-results/test/*.xml'
cleanWs() cleanWs()

View File

@ -2,7 +2,7 @@ group=me.totalfreedom.scissors
version=1.19.3-R0.1-SNAPSHOT version=1.19.3-R0.1-SNAPSHOT
mcVersion=1.19.3 mcVersion=1.19.3
paperRef=1143b636634183fe9ee6d8cf9709afd4b3239de4 paperRef=a5ecfd6c30c1664767415ecc964d28433559218a
org.gradle.caching=true org.gradle.caching=true
org.gradle.parallel=true org.gradle.parallel=true