fabric-loom/Jenkinsfile

15 lines
220 B
Plaintext
Raw Normal View History

node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew build --refresh-dependencies"
stage "Archive artifacts"
2018-05-14 10:50:02 +00:00
sh "./gradlew publish"
}