Skip to content

Commit e2ed5ad

Browse files
committed
Update the maven release workflow
1 parent 30026bb commit e2ed5ad

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

.github/workflows/release-maven-artifacts.yaml

+15-7
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ jobs:
4949
exit 1
5050
fi
5151
52+
- name: Set up JDK 17
53+
uses: actions/setup-java@v3
54+
with:
55+
java-version: '17'
56+
distribution: 'temurin'
57+
5258
- name: Set up settings.xml
5359
run: |
5460
pwd
@@ -64,13 +70,15 @@ jobs:
6470
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
6571

6672
- 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
7482
7583
- name: Google Chat Notification
7684
if: ${{ failure() }}

0 commit comments

Comments
 (0)