diff --git a/Jenkinsfile b/Jenkinsfile index 6b4dd20..63ea89f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ // Load Jenkins shared libraries common to all projects def libCmn = [ remote: 'https://code.in.digital-me.nl/git/DEVops/JenkinsLibLazy.git', - branch: 'master', + branch: 'devel_bear', credentialsId: null, ] @@ -38,7 +38,7 @@ // Load Jenkins shared libraries to customize this project def libCst = [ remote: 'ssh://git@code.in.digital-me.nl:2222/DEVops/JenkinsLibCustom.git', - branch: 'master', + branch: 'devel_bear', credentialsId: 'bot-ci-dgm-rsa', ] @@ -54,8 +54,8 @@ // Define the remotes and the branches used to release from and to // Using master for both since we don't want a devel branch // And wecan rely on tagging for production state -def releaseFrom = [ remote: 'origin', branch: 'master' ] -def releaseTo = [ remote: 'origin', branch: 'master' ] +def releaseFrom = [ remote: 'origin', branch: 'devel_bear' ] +def releaseTo = [ remote: 'origin', branch: 'devel_bear' ] // Initialize lazyConfig for this pipeline lazyConfig(