diff --git a/Jenkinsfile b/Jenkinsfile index 5ae5daa..50421f1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,11 @@ pipeline { agent any stages { + stage('Submodules') { + steps { + sh 'git submodule update --init --recursive --force' + } + } stage('Cake Build') { steps { sh 'dotnet tool restore'