1
0
mirror of https://github.com/GeyserMC/GeyserOptionalPack.git synced 2025-12-19 14:59:14 +00:00

Move to .mcpack extension for 1 click loading into the client (#5)

This commit is contained in:
rtm516
2021-03-05 15:41:22 +00:00
committed by GitHub
parent 9f1abc861f
commit 395f6092d1

4
Jenkinsfile vendored
View File

@@ -7,11 +7,11 @@ pipeline {
stage ('Build') { stage ('Build') {
steps { steps {
sh 'bash copy_java_files_to_pack.sh' sh 'bash copy_java_files_to_pack.sh'
sh 'zip GeyserOptionalPack.zip -r . -x ".*" Jenkinsfile required_files.txt copy_java_files_to_pack.sh' sh 'zip GeyserOptionalPack.mcpack -r . -x ".*" Jenkinsfile required_files.txt copy_java_files_to_pack.sh'
} }
post { post {
success { success {
archiveArtifacts artifacts: 'GeyserOptionalPack.zip' archiveArtifacts artifacts: 'GeyserOptionalPack.mcpack'
} }
} }
} }