Add instruction to Jenkinsfile to upload notification to discord

This commit is contained in:
zontreck 2024-12-25 01:52:02 -07:00
parent 55657e8f0d
commit 9d0b8f68b0
3 changed files with 5 additions and 5 deletions

2
Jenkinsfile vendored
View file

@ -42,6 +42,8 @@ pipeline {
always {
archiveArtifacts artifacts: "Releases/*.zip"
cleanWs()
if(env.DISCORD_URL != '')
discordSend customAvatarUrl: '', customFile: '', customUsername: '', description: 'This is an automated build of the modification for Vintage Story.', enableArtifactsList: true, footer: '', image: '', link: '', result: '', scmWebUrl: '', thumbnail: '', title: 'Vintage Storage Build Results', webhookURL: env.DISCORD_URL
}
}
}