File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99 steps :
1010 - 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-
1511 - name : Set up JDK
1612 uses : actions/setup-java@v4
1713 with :
2420 gpg-private-key : ${{ secrets.GPG_PRIVATE_KEY }} # has to be read directly from secrets
2521 gpg-passphrase : MAVEN_GPG_PASSPHRASE # default name used by maven-gpg-plugin
2622
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+
2728 - name : Release new version
2829 run : mvn -Dmaven.test.skip=true -Darguments=-DskipTests -ntp -B release:clean release:prepare release:perform -P release
2930 env :
You can’t perform that action at this time.
0 commit comments