Skip to content

Commit

Permalink
Make a local checkout when perform the release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsuter committed Oct 6, 2022
1 parent a1df74c commit 9c8895d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/release/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pipeline {
withCredentials([string(credentialsId: 'gpg.password', variable: 'GPG_PWD')]) {
def dryRun = isReleaseBranch() ? '' : '-DdryRun=true'
def args = "-Dsite.path=release -Dmaven.test.skip=true -Divy.engine.list.url=${params.engineListUrl} -Dgpg.skip=false -Dgithub.site.skip=false -Dgpg.project-build.password='${env.GPG_PWD}'";
maven cmd: dryRun + ' -Darguments="' + args + '" -DpushChanges=false -DlocalCheckout=false release:prepare release:perform'
maven cmd: dryRun + ' -Darguments="' + args + '" -DpushChanges=false -DlocalCheckout=true release:prepare release:perform'
}

withEnv(['GIT_SSH_COMMAND=ssh -o StrictHostKeyChecking=no']) {
Expand Down

0 comments on commit 9c8895d

Please sign in to comment.