diff --git a/Jenkinsfile b/Jenkinsfile index cf0938f..8a24ae0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,18 +17,21 @@ pipeline { steps { sh 'chmod -R 777 .' sh 'gem install bundler' + sh 'curl -d "robertjohnson.work Prep stage done." https://ntfy.draft13.com/jenkins' } } stage('Build') { steps { sh 'bundle install' sh 'bundle exec jekyll build' + sh 'curl -d "robertjohnson.work Build stage done." https://ntfy.draft13.com/jenkins' } } stage('Deploy') { steps { sh 'scp -r -o StrictHostKeychecking=no -i $KEY_FILE _site/ ubuntu@box.myemail.cloud:/home/ubuntu' sh 'ssh ubuntu@box.myemail.cloud -i $KEY_FILE \'bash -s\' < deploy.sh' + sh 'curl -d "robertjohnson.work Deploy stage done." https://ntfy.draft13.com/jenkins' } } }