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....' } } }