From aa03b12b5fa757da3812149e86a2ebbbab15575d Mon Sep 17 00:00:00 2001 From: Michael Jenkins Date: Sat, 2 Oct 2021 04:11:11 -0700 Subject: [PATCH] Change Report to Deploy --- 05_01.md | 4 ++-- Jenkinsfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/05_01.md b/05_01.md index c3134e3..185fdea 100644 --- a/05_01.md +++ b/05_01.md @@ -29,9 +29,9 @@ pipeline { echo 'Testing..' } } - stage('Report') { + stage('Deploy') { steps { - echo 'Reporting....' + echo 'Deploying....' } } } diff --git a/Jenkinsfile b/Jenkinsfile index f75705f..9144994 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,9 +24,9 @@ pipeline { echo 'Testing..' } } - stage('Report') { + stage('Deploy') { steps { - echo 'Reporting....' + echo 'Deploying....' } } }