1.16.2
ModUpdater/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-08-11 16:46:15 -04:00
parent 47ac38726f
commit 0a2afee6ee
1 changed files with 14 additions and 1 deletions

15
Jenkinsfile vendored
View File

@ -7,7 +7,7 @@ pipeline {
stages {
stage('Build') {
steps {
sh './gradlew build publish'
sh './gradlew build'
}
post {
success {
@ -15,5 +15,18 @@ pipeline {
}
}
}
stage('Publish') {
when {
expression {
return sh(returnStdout: true, script: 'git tag --contains').trim().length() > 0
}
}
steps {
sh './gradlew publish'
withCredentials([string(credentialsId: 'curseforge_key', variable: 'CURSEFORGE_KEY')]) {
sh './gradlew -Pcurseforge.api_key="${CURSEFORGE_KEY}" curseforge'
}
}
}
}
}