File tree 1 file changed +15
-7
lines changed
1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change 49
49
exit 1
50
50
fi
51
51
52
+ - name : Set up JDK 17
53
+ uses : actions/setup-java@v3
54
+ with :
55
+ java-version : ' 17'
56
+ distribution : ' temurin'
57
+
52
58
- name : Set up settings.xml
53
59
run : |
54
60
pwd
@@ -64,13 +70,15 @@ jobs:
64
70
PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
65
71
66
72
- name : Maven Deploy
67
- run : |
68
- cd registry
69
- # Retry 3 times before the steps actually fails
70
- (echo "===== Maven Deploy Attempt: 1 ====" && mvn deploy --batch-mode -Pprod -Prelease -DskipTests -Dspotless.check.skip=true --settings /home/runner/.m2/settings.xml) || \
71
- (echo "===== Maven Deploy Attempt: 2 ====" && mvn deploy --batch-mode -Pprod -Prelease -DskipTests -Dspotless.check.skip=true --settings /home/runner/.m2/settings.xml) || \
72
- (echo "===== Maven Deploy Attempt: 3 ====" && mvn deploy --batch-mode -Pprod -Prelease -DskipTests -Dspotless.check.skip=true --settings /home/runner/.m2/settings.xml) || \
73
- (echo "==== Maven Deploy Step Failed ====" && exit 1)
73
+ uses : nick-fields/retry@v3
74
+ with :
75
+ timeout_minutes : 10
76
+ max_attempts : 5
77
+ retry_on : error
78
+ retry_wait_seconds : 120
79
+ command : |
80
+ cd registry
81
+ mvn deploy --batch-mode -Pprod -Prelease -DskipTests -Dspotless.check.skip=true --settings /home/runner/.m2/settings.xml
74
82
75
83
- name : Google Chat Notification
76
84
if : ${{ failure() }}
You can’t perform that action at this time.
0 commit comments