Publish unoptimized .jar files in the Jenkinsfile.

This commit is contained in:
Username404-59 2021-04-16 13:19:04 +02:00
parent 7c0fe6119a
commit a72cbeaaf0
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -18,6 +18,9 @@ pipeline {
stage('Deploy') {
steps {
echo 'Deploying....'
dir('remappedJars') {
zip zipFile: './UnoptimizedJars.zip', archive: true, glob: '*.jar'
}
dir('shrinkedJars') {
archiveArtifacts artifacts:'*.jar', fingerprint: false
}