DataLock/Jenkinsfile

21 lines
567 B
Plaintext
Raw Normal View History

2025-06-28 02:40:23 +00:00
pipeline {
agent any
stages {
stage('Gradle') {
steps {
sh './gradlew build
2025-06-28 02:40:23 +00:00
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: 'build/libs/', followSymlinks: false
}
}
stage('discord') {
steps {
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
}
}
}
}