We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90b1830 commit 01d1a65Copy full SHA for 01d1a65
1 file changed
.github/workflows/release.yml
@@ -54,6 +54,7 @@ jobs:
54
55
- name: Update version to release version
56
run: |
57
+ echo "Updating version to ${{ github.event.inputs.release_version }}"
58
mvn versions:set -DnewVersion=${{ github.event.inputs.release_version }}
59
mvn versions:commit
60
@@ -62,6 +63,7 @@ jobs:
62
63
# Update parent version in all child POMs
64
for pom in $(find . -name pom.xml -not -path "*/target/*"); do
65
if [ -f "$pom" ]; then
66
+ echo "Updating parent version in $pom"
67
mvn versions:update-parent -DparentVersion=${{ github.event.inputs.release_version }} -f "$pom"
68
mvn versions:commit -f "$pom"
69
fi
0 commit comments