Skip to content

Commit

Permalink
add git setup to java release pipeline (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
kb-kerem authored Apr 12, 2024
1 parent 4b19917 commit 35b2b52
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/java-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
server-id: ossrh
server-username: MVN_CENTRAL_USERNAME
server-password: MVN_CENTRAL_PASSWORD

- name: Setup Git
if: ${{ steps.prep.outputs.tag_name == '' }}
run: |
git config --global user.name "sauce-visual-bot"
git config --global user.email "[email protected]"
- name: upgrade & push version
id: upgrade
Expand Down

0 comments on commit 35b2b52

Please sign in to comment.