Fucking orion

This commit is contained in:
2024-05-09 19:41:18 +02:00
parent 261ea4c3f8
commit f712036d2e
2 changed files with 5 additions and 4 deletions

View File

@@ -29,14 +29,14 @@ pipeline {
stage("Build") {
steps {
sh "./gradlew build"
sh "./gradlew build -PreleaseType=port"
}
}
stage("Publish to Maven") {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "./gradlew publish"
sh "./gradlew publish -PreleaseType=port"
}
}
}