Compare commits

...
2 Commits
Author SHA1 Message Date
auto 7896dc614f Add gradle-wrapper.jar to the project
Adding the Gradle wrapper JAR file simplifies the build process for users by ensuring a consistent Gradle version. This inclusion helps maintain build compatibility and reduces setup friction for new contributors.
2024-08-20 21:13:01 +02:00
auto d12c5e497c Auto despawn fish that players don't pick up after 60 seconds 2024-08-20 21:09:56 +02:00
2 changed files with 26 additions and 0 deletions
Vendored
+26
View File
@@ -0,0 +1,26 @@
pipeline {
agent any
stages {
stage('Gradle') {
steps {
sh 'bash gradlew build'
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: 'build/libs/', followSymlinks: false
}
}
stage('discord') {
when {
anyOf {
branch 'main'
branch 'master'
}
}
steps {
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
}
}
}
}
Binary file not shown.