diff --git a/Jenkinsfile b/Jenkinsfile index 4874dd9..2d66107 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,6 +20,10 @@ pipeline { steps { sh "git config user.name ${env.GIT_USER}" sh "git config user.email ${env.GIT_MAIL}" + /* necessary to have access to the theme partials */ + sshagent(credentials: ['status-im-auto-ssh']) { + sh 'git submodule update --init --recursive' + } } }