Merge remote-tracking branch 'upstream/mc1.20.1/dev' into mc1.21.1/dev

This commit is contained in:
IThundxr 2025-02-28 19:35:51 -05:00
commit c0a1e022ee
Failed to generate hash of commit

10
Jenkinsfile vendored
View file

@ -23,8 +23,14 @@ pipeline {
stage('Build') {
steps {
echo 'Building project.'
sh './gradlew build publish --stacktrace --warn'
withCredentials([
file(credentialsId: 'build_secrets', variable: 'ORG_GRADLE_PROJECT_secretFile')
]) {
echo 'Building project.'
sh './gradlew build publish --stacktrace --warn'
}
}
}
}