Disable update stage

This commit is contained in:
Len 2026-07-30 08:17:26 -05:00
parent 7bbff411e4
commit 5c166f2bba

18
Jenkinsfile vendored
View File

@ -22,14 +22,14 @@ pipeline {
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
}
}
stage('Copy to /mnt/updates/plugins') {
when {
branch 'main'
branch 'master'
}
steps {
sh 'cp build/libs/*.jar /mnt/updates/plugins/'
}
}
// stage('Copy to /mnt/updates/plugins') {
// when {
// branch 'main'
// branch 'master'
// }
// steps {
// sh 'cp build/libs/*.jar /mnt/updates/plugins/'
// }
// }
}
}