Skip to content

Commit

Permalink
Merge pull request #630 from axonivy-market/fix-deploy-release-branch
Browse files Browse the repository at this point in the history
Fix deploy on release branch
  • Loading branch information
ivy-lli authored Nov 19, 2024
2 parents 810db2f + 8f1c3ab commit 87fbc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pipeline {
docker.image("selenium/standalone-firefox:4.10").withRun("-e START_XVFB=false --shm-size=2g --name ${seleniumName} --network ${networkName}") {
docker.build('maven-selenium').inside("--name ${ivyName} --network ${networkName}") {
def workspace = pwd()
def phase = env.BRANCH_NAME == 'master' ? 'deploy' : 'verify'
def phase = isReleasingBranch() ? 'deploy' : 'verify'
maven cmd: "clean ${phase} -Dmaven.test.failure.ignore=true " +
"-Dengine.directory=${workspace}/html-dialog-demos/html-dialog-demos/target/ivyEngine " +
"-Divy.engine.version.latest.minor=true " +
Expand Down

0 comments on commit 87fbc16

Please sign in to comment.