Updated Jenkinsfile.

This commit is contained in:
Harrison Deng 2022-05-12 04:12:35 -05:00
parent 9708ae254b
commit 0cb51d45c0

4
Jenkinsfile vendored
View File

@ -23,8 +23,8 @@ pipeline {
steps {
sh "git clean -dfX"
sh "rm -r server/world"
zip archive: true, dir: 'curseforge', exclude: '', glob: '', zipFile: 'publish/RSEMCS.zip'
zip archive: true, dir: 'server', exclude: '', glob: '', zipFile: 'publish/RSEMCS_server.zip'
zip archive: true, dir: 'curseforge', exclude: '', glob: '', overwrite: true, zipFile: 'publish/RSEMCS.zip'
zip archive: true, dir: 'server', exclude: '', glob: '', overwrite: true, zipFile: 'publish/RSEMCS_server.zip'
}
}
}