We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d5a03 commit b46cbf8Copy full SHA for b46cbf8
.github/workflows/release.yml
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
release:
13
- environment: release
+ environment: maven_central
14
runs-on: ubuntu-latest
15
steps:
16
- name: Checkout sources
@@ -26,6 +26,11 @@ jobs:
26
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
27
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable to use for passphrase in release
28
29
+ - name: Set up Git user
30
+ run: |
31
+ git config --global user.name "${{ secrets.GIT_USER_NAME }}"
32
+ git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
33
+
34
- name: Release
35
run: mvn -B release:prepare release:perform
36
env:
0 commit comments