We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bd867c commit 5da784bCopy full SHA for 5da784b
1 file changed
.github/workflows/maven.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: Setup Git username
20
run: |
21
#
22
- git config --global user.email "git@github.com"
+ git config --global user.email "vicky.thakor@javaquery.com"
23
git config --global user.name "Vicky Thakor"
24
- name: Set up JDK 1.8
25
uses: actions/setup-java@v1.4.3
@@ -39,7 +39,11 @@ jobs:
39
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
40
41
- name: Publish to Apache Maven Central
42
- run: mvn -X -e --batch-mode clean release:prepare release:perform
+ run: |
43
+ #
44
45
+ git config --global user.name "Vicky Thakor"
46
+ mvn -X -e --batch-mode clean release:prepare release:perform
47
env:
48
MAVEN_USERNAME: javaquery
49
MAVEN_CENTRAL_TOKEN: ${{ secrets.OSSRH_TOKEN }}
0 commit comments