This commit is contained in:
fit2-zhao 2020-12-21 10:57:50 +08:00
commit c7da0346ab
1 changed files with 7 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -24,5 +24,12 @@ pipeline {
sh "docker push ${IMAGE_FREFIX}/${IMAGE_NAME}:\${TAG_NAME:-\$BRANCH_NAME}"
}
}
stage('Notification') {
steps {
withCredentials([string(credentialsId: 'wechat-bot-webhook', variable: 'WEBHOOK')]) {
qyWechatNotification failSend: true, mentionedId: '', mentionedMobile: '', webhookUrl: '${WEBHOOK}'
}
}
}
}
}