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.
1 parent d57fbd8 commit 3022292Copy full SHA for 3022292
.github/workflows/release.yml
@@ -17,12 +17,14 @@ jobs:
17
java-version: '11'
18
check-latest: true
19
server-id: 'central'
20
- server-username: MVN_CENTRAL_USERNAME
21
- server-password: MVN_CENTRAL_PASSWORD
+ server-username: OSSRH_USERNAME
+ server-password: OSSRH_PASSWORD
22
cache: 'maven'
23
- name: Build & Deploy
24
run: |
25
+ git config --global user.name github-actions[bot]
26
+ git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
27
mvn -B gitflow:release
28
env:
- MVN_CENTRAL_USERNAME: ${{ secrets.MVN_CENTRAL_USERNAME }}
- MVN_CENTRAL_PASSWORD: ${{ secrets.MVN_CENTRAL_PASSWORD }}
29
+ OSSRH_USERNAME: ${{ secrets.OSS_SONATYPE_USER }}
30
+ OSSRH_PASSWORD: ${{ secrets.OSS_SONATYPE_PASS }}
0 commit comments