We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875e13c commit dd9aa6eCopy full SHA for dd9aa6e
.github/workflows/release.yml
@@ -26,5 +26,12 @@ jobs:
26
# nexus_password: ${{ secrets.OSSRH_TOKEN }}
27
- name: Set version to next snapshot version
28
run: mvn -q build-helper:parse-version versions:set -DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion}-SNAPSHOT versions:commit
29
- - name: Push changes to master
30
- uses: tcitry/push-to-master@v1.0
+ - name: Commit files
+ run: |
31
+ git config --local user.email "action@github.com"
32
+ git config --local user.name "GitHub Action"
33
+ git commit -m "Add changes" -a
34
+ - name: Push changes
35
+ uses: ad-m/github-push-action@master
36
+ with:
37
+ github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments