We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be7ff4 commit 8d79b10Copy full SHA for 8d79b10
.github/workflows/main.yml
@@ -76,8 +76,10 @@ jobs:
76
# Commit the snapshot version
77
- name: Commit snapshot version
78
run: |
79
+ NEW_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
80
git add .
- git commit -m "${{ github.event.inputs.version }}-SNAPSHOT"
81
+ git commit -m "$NEW_VERSION"
82
+ # git commit -m "${{ github.event.inputs.version }}-SNAPSHOT"
83
84
# Push commits and tags to GitHub
85
- name: Push changes
0 commit comments