Skip to content

Commit

Permalink
Fix deploy on release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-lli committed Nov 19, 2024
1 parent 44f51a0 commit 7dbbf13
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='[10.0.0, 10.1.0)' " +
Expand Down

0 comments on commit 7dbbf13

Please sign in to comment.