Stop jenkins builds trying to trigger GeyserConnect build (#3737)

GeyserConnect is an extension now, and does not need to be a step in jenkins.
This commit is contained in:
onebeastchris 2023-05-02 19:08:48 +02:00 committed by GitHub
parent b48d4a0625
commit 03283021cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 10 deletions

10
Jenkinsfile vendored
View File

@ -25,14 +25,4 @@ pipeline {
}
}
}
post {
success {
script {
if (env.BRANCH_NAME == 'master') {
build propagate: false, wait: false, job: 'GeyserMC/GeyserConnect/master', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
}
}
}
}
}