Skip to content

Commit dd9aa6e

Browse files
committed
push back fix
1 parent 875e13c commit dd9aa6e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/release.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,12 @@ jobs:
2626
# nexus_password: ${{ secrets.OSSRH_TOKEN }}
2727
- name: Set version to next snapshot version
2828
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
29+
- name: Commit files
30+
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

Comments
 (0)