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 4
4
workflow_dispatch
5
5
6
6
jobs :
7
- deploy :
7
+ build :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : actions/checkout@v4
@@ -22,12 +22,13 @@ jobs:
22
22
23
23
- name : Setup git profile
24
24
run : |
25
- git config user.name "github-actions[bot]"
26
- git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
25
+ git config --global user.name "github-actions[bot]"
26
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
27
27
28
28
- name : Release new version
29
- run : mvn -Dmaven.test.skip=true -Darguments=-DskipTests -ntp -B release:clean release:prepare release:perform -P release
29
+ run : mvn clean -Darguments=-DskipTests -ntp -B release:clean release:prepare release:perform -P release
30
30
env :
31
31
SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
32
32
SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
33
33
MAVEN_GPG_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
34
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments