committing all pom changed for new version

This commit is contained in:
2026-06-12 09:55:41 +02:00
parent 7f160dd10b
commit 8e6e323485
+2 -2
View File
@@ -145,7 +145,7 @@ jobs:
- name: Commit release e tag - name: Commit release e tag
run: | run: |
VERSION="${{ steps.version.outputs.RELEASE_VERSION }}" VERSION="${{ steps.version.outputs.RELEASE_VERSION }}"
git add pom.xml git add $(find . -name 'pom.xml' -not -path './.ci-config/*')
git commit -m "release: ${VERSION} [skip ci]" git commit -m "release: ${VERSION} [skip ci]"
git tag -a "${VERSION}" -m "Release ${VERSION}" git tag -a "${VERSION}" -m "Release ${VERSION}"
@@ -156,7 +156,7 @@ jobs:
NEXT="${{ steps.version.outputs.NEXT_VERSION }}" NEXT="${{ steps.version.outputs.NEXT_VERSION }}"
mvn -B -s .ci-config/settings.xml $PROF versions:set \ mvn -B -s .ci-config/settings.xml $PROF versions:set \
-DnewVersion="$NEXT" -DgenerateBackupPoms=false -DnewVersion="$NEXT" -DgenerateBackupPoms=false
git add pom.xml git add $(find . -name 'pom.xml' -not -path './.ci-config/*')
git commit -m "chore: avanza versione a ${NEXT} [skip ci]" git commit -m "chore: avanza versione a ${NEXT} [skip ci]"
- name: Push release + tag + versione successiva - name: Push release + tag + versione successiva