File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ pipeline {
1313 triggers {
1414 upstream(upstreamProjects : " ObjectStore-Linux/${ env.BRANCH_NAME.replaceAll("/", "%2F")} " ,
1515 threshold : hudson.model.Result . SUCCESS )
16- cron (cronSchedule)
16+ cron(cronSchedule)
1717 }
1818
1919 stages {
@@ -51,7 +51,15 @@ pipeline {
5151 BINTRAY_LOGIN = credentials(' bintray_login' )
5252 }
5353 steps {
54+ script {
55+ slackSend color : " #42ebf4" ,
56+ message : " Publishing ${ currentBuild.fullDisplayName} to ${ BINTRAY_URL} \n ${ env.BUILD_URL} "
57+ }
5458 sh ' ./gradlew --stacktrace -PpreferedRepo=${BINTRAY_URL} -PpreferedUsername=${BINTRAY_LOGIN_USR} -PpreferedPassword=${BINTRAY_LOGIN_PSW} uploadArchives'
59+ script {
60+ slackSend color : " ##41f4cd" ,
61+ message : " Published ${ currentBuild.fullDisplayName} successfully to Bintray - check https://bintray.com/objectbox/objectbox\n ${ env.BUILD_URL} "
62+ }
5563 }
5664 }
5765
You can’t perform that action at this time.
0 commit comments