forgot to setup link for discord messages on release

This commit is contained in:
thelamer 2018-09-23 15:47:15 -07:00
parent addf356d40
commit 49c5605e8a

8
Jenkinsfile vendored
View File

@ -93,6 +93,14 @@ pipeline {
}
}
}
// If this is a stable or devel github release generate the link for the build message
stage("Set ENV github_link"){
steps{
script{
env.RELEASE_LINK = 'https://github.com/' + env.EXT_USER + '/' + env.EXT_REPO + '/releases/tag/' + env.EXT_RELEASE
}
}
}
// If this is a master build use live docker endpoints
stage("Set ENV live build"){
when {