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.
2 parents 57bd91a + f0ca03f commit e57c76aCopy full SHA for e57c76a
.github/workflows/release.yml
@@ -55,7 +55,7 @@ jobs:
55
steps:
56
- uses: actions/checkout@v3
57
- name: Increment Version
58
- run: ./gradlew incrementVersion --versionIncrementType=PATCH --versionIncrementBranch=master
59
- env:
60
- gitUserEmail: ${{ secrets.GIT_USER_EMAIL }}
61
- gitUserName: ${{ secrets.GIT_USER_NAME }}
+ run: |
+ git config --global user.email "[email protected]"
+ git config --global user.name "Sidhant Aggarwal"
+ ./gradlew incrementVersion --versionIncrementType=PATCH --versionIncrementBranch=master
0 commit comments