diff --git a/Jenkinsfile b/Jenkinsfile index eb415c8..6b4dd20 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -52,7 +52,9 @@ ) // Define the remotes and the branches used to release from and to -def releaseFrom = [ remote: 'origin', branch: 'devel' ] +// 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' ] // Initialize lazyConfig for this pipeline