From 13568356116a93710e88d4b7dcc7c93df2d6712e Mon Sep 17 00:00:00 2001 From: Lorenzo Natali Date: Wed, 6 Mar 2024 16:34:07 +0100 Subject: [PATCH] test update --- .github/workflows/update_dependencies_versions.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_dependencies_versions.yml b/.github/workflows/update_dependencies_versions.yml index 6168ef384b..b63802db6c 100644 --- a/.github/workflows/update_dependencies_versions.yml +++ b/.github/workflows/update_dependencies_versions.yml @@ -50,13 +50,13 @@ jobs: mvn versions:set-property -Dproperty=print-lib.version -DnewVersion=$MAPFISH_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting mvn versions:set-property -Dproperty=geostore-webapp.version -DnewVersion=$GEOSTORE_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting mvn versions:set-property -Dproperty=http_proxy.version -DnewVersion=$HTTP_PROXY_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting - + git add pom.xml ## Update the versions of the dependencies in the project templates POM_FILES=$(git ls-files project/standard/templates/ | grep 'pom\.xml$') for POM_FILE in $POM_FILES; do - mvn versions:set-property -Dproperty=print-lib.version -DnewVersion=$MAPFISH_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting - mvn versions:set-property -Dproperty=geostore-webapp.version -DnewVersion=$GEOSTORE_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting - mvn versions:set-property -Dproperty=http_proxy.version -DnewVersion=$HTTP_PROXY_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting + mvn versions:set-property -f $POM_FILE -Dproperty=print-lib.version -DnewVersion=$MAPFISH_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting + mvn versions:set-property -f $POM_FILE -Dproperty=geostore-webapp.version -DnewVersion=$GEOSTORE_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting + mvn versions:set-property -f $POM_FILE -Dproperty=http_proxy.version -DnewVersion=$HTTP_PROXY_VERSION -DgenerateBackupPoms=false -DautoVersionSubmodules=true -Pprinting done pr_branch_name="up_versions-${RUN_ID}" echo "Creating a PR on branch: ${pr_branch_name} for ${{ github.ref_name }}"