diff --git a/Jenkinsfile b/Jenkinsfile index 96c8ae1..c7e936f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,11 +2,12 @@ pipeline { agent any stages { stage('Stage 1') { - node { - checkout scm - stash 'source' - } + steps { + node { + checkout scm + stash 'source' + } echo 'Hello world!' } }