Skip to content

Commit

Permalink
fix: fix version in JenkinsFile
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminperez committed Dec 30, 2024
1 parent e4677b4 commit ad09870
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 @@ -6,7 +6,7 @@ pipeline {
stage("Initialization") {
steps {
script {
def version = sh(returnStdout: true, script: 'docker-compose run --rm maven mvn $MVN_OPTS help:evaluate -Dexpression=project.version -q -DforceStdout')
def version = sh(returnStdout: true, script: 'docker compose -f backend/docker-compose.yml run --rm maven mvn $MVN_OPTS help:evaluate -Dexpression=project.version -q -DforceStdout')
buildName "${env.GIT_BRANCH.replace("origin/", "")}@${version}"
}
}
Expand Down

0 comments on commit ad09870

Please sign in to comment.