fabric-loom/Jenkinsfile
2018-10-22 19:30:59 +01:00

15 lines
No EOL
220 B
Groovy

node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew build --refresh-dependencies"
stage "Archive artifacts"
sh "./gradlew publish"
}