File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
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
11
- name : Set up JDK
16
12
uses : actions/setup-java@v4
17
13
with :
24
20
gpg-private-key : ${{ secrets.GPG_PRIVATE_KEY }} # has to be read directly from secrets
25
21
gpg-passphrase : MAVEN_GPG_PASSPHRASE # default name used by maven-gpg-plugin
26
22
23
+ - name : Setup git profile
24
+ run : |
25
+ git config user.name "github-actions[bot]"
26
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
27
+
27
28
- name : Release new version
28
29
run : mvn -Dmaven.test.skip=true -Darguments=-DskipTests -ntp -B release:clean release:prepare release:perform -P release
29
30
env :
You can’t perform that action at this time.
0 commit comments