Update Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 19:28:14 -04:00 committed by GitHub
parent babbe25b67
commit d396cc7bfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View file

@ -14,7 +14,7 @@ pipeline {
stage('Package') { stage('Package') {
steps { steps {
slackSend "The pipeline ${currentBuild.fullDisplayName} completed successfully." echo "blob"
} }
} }
@ -28,9 +28,9 @@ pipeline {
echo 'Deploy' echo 'Deploy'
} }
} }
post { }
always { post {
slackSend "The pipeline ${currentBuild.fullDisplayName} completed successfully." always {
} slackSend "The pipeline ${currentBuild.fullDisplayName} completed successfully."
} }
} }