Updated Jenkinsfile

Added pipeline for discord-notifier plugin
This commit is contained in:
Jarrett Jackson 2023-02-17 01:35:41 -05:00
parent 914225e314
commit dd7557f1ba
1 changed files with 7 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -7,5 +7,12 @@ pipeline {
sh 'docker build -t microblog:latest .'
}
}
stage("Hello To Discord") {
steps {
echo ' Test to Discord'
discordSend description: '', footer: '', image: '', link: 'http://3.91.14.163:8080', result: '', scmWebUrl: '', thumbnail: '', title:
'HelloToDiscordTest', webhookURL: 'https://discord.com/api/webhooks/1075879011667955872/Nk0gmKZkrISEs-hru-HjtzzgezWweABCdPsOKGIzkmj5xMcqKC3m1-dx7GZSu0yURAOo'
}
}
}
}