GalaxyDatapack/Jenkinsfile

24 lines
664 B
Plaintext
Raw Normal View History

2024-08-04 19:52:30 +00:00
pipeline {
agent any
stages {
stage('Gradle') {
steps {
2026-08-01 11:16:37 +00:00
sh '''
set +x
chmod +x zip.sh
./zip.sh
'''
2024-08-04 19:52:30 +00:00
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: 'Galaxy.zip', followSymlinks: false
}
}
stage('discord') {
steps {
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
}
}
}
}