Scissors/Jenkinsfile

16 lines
324 B
Plaintext
Raw Normal View History

2022-04-04 22:21:20 +00:00
pipeline {
agent any
stages {
stage('build') {
steps {
sh './gradlew applyPatches'
sh './gradlew paperclipJar'
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
}
}
}