diff --git a/Jenkinsfile b/Jenkinsfile index b10a8ee..3cbdf8f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { stage('Cake Build') { steps { sh 'chmod +x ./build.sh' - sh './build.sh -Target Push -Branch ' + env.BRANCH_NAME + sh './build.sh -Target=Push -Branch=' + env.BRANCH_NAME } } stage('Document') { @@ -12,7 +12,7 @@ pipeline { branch 'release' } steps { - sh './build.sh -Target Document' + sh './build.sh -Target=Document' } } }