Update jenkinsfile

This commit is contained in:
zontreck 2024-07-12 18:35:33 -07:00
parent edc2f9a89e
commit cf2592eb05

5
Jenkinsfile vendored
View file

@ -23,7 +23,7 @@ pipeline {
sh '''
#!/bin/bash
chmod +x gradlew
./gradlew clean jarjar
./gradlew clean jar
'''
}
}
@ -32,7 +32,8 @@ pipeline {
post {
always {
archiveArtifacts artifacts: 'build/libs/*AIO*', fingerprint: true
archiveArtifacts artifacts: 'build/libs/*-*.jar', fingerprint: true
deleteDir()
}
}
}