diff --git a/Jenkinsfile b/Jenkinsfile index e3f66b2..c0b354a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,7 @@ pipeline { options { buildDiscarder(logRotator(artifactNumToKeepStr: '0')) - skipDefaultCheckout() - checkoutToSubdirectory('HTLLE-DA-Vorlage') + skipDefaultCheckout(true) } parameters { string(name: 'USERNAME', defaultValue: 'Username', description: 'Benutzername') @@ -19,7 +18,9 @@ pipeline { } steps{ cleanWs() - checkout scm + dir('HTLLE-DA-Vorlage') { + checkout scm + } } } stage('Build only template') {