File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -101,4 +101,13 @@ jobs:
101
101
uses : peaceiris/actions-gh-pages@v3
102
102
with :
103
103
github_token : ${{ secrets.GIT_ACCESS_TOKEN }}
104
- publish_dir : ./target/generated-docs
104
+ publish_dir : ./target/generated-docs
105
+
106
+ - name : Commit next development version
107
+ run : |
108
+ ./mvnw build-helper:parse-version versions:set -DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion}-SNAPSHOT
109
+ git add pom.xml
110
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
111
+ git config --global user.name "GitHub Action"
112
+ git commit -a -m "build: Bump for next development cycle"
113
+ git push origin ${{ github.event.inputs.ref }}
You can’t perform that action at this time.
0 commit comments