diff --git a/Jenkinsfile b/Jenkinsfile index c7d173c2a4..10693bf94b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -122,7 +122,14 @@ node('docker') { always-auth true email cesmarvin@cloudogu.com '''.trim() - mvn "-pl :scm-ui buildfrontend:run@deploy" + + // we are tricking lerna by pretending that we are not a git repository + sh "mv .git .git.disabled" + try { + mvn "-pl :scm-ui buildfrontend:run@deploy" + } finally { + sh "mv .git.disabled .git" + } } }