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 da5f22a commit a4a7917Copy full SHA for a4a7917
.github/workflows/release.yml
@@ -8,6 +8,10 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v4
11
+ run: |
12
+ git config user.name "github-actions[bot]"
13
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
14
+
15
- name: Set up JDK
16
uses: actions/setup-java@v4
17
with:
@@ -20,11 +24,6 @@ jobs:
20
24
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # has to be read directly from secrets
21
25
gpg-passphrase: MAVEN_GPG_PASSPHRASE # default name used by maven-gpg-plugin
22
26
23
- - name: Setup git profile
- run: |
- git config user.name "GitHub Actions"
- git config user.email "[email protected]"
27
-
28
- name: Release new version
29
run: mvn -Dmaven.test.skip=true -Darguments=-DskipTests -ntp -B release:clean release:prepare release:perform -P release
30
env:
0 commit comments