We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbea463 commit 0cb93bcCopy full SHA for 0cb93bc
1 file changed
.github/workflows/deploy.yml
@@ -130,17 +130,7 @@ jobs:
130
port: 2022
131
script: |
132
sleep 120
133
- for i in {1..10}; do
134
- if curl -sf http://localhost/api/actuator/health; then
135
- echo "✅ SpringBoot health check passed"
136
- exit 0
137
- fi
138
- echo "Retry $i/10..."
139
- sleep 5
140
- done
141
- echo "❌ SpringBoot health check failed"
142
- exit 1
143
-
+ curl -sf http://localhost/api/actuator/health && echo "✅ Passed" || echo "❌ Failed"
144
./deploy.sh status
145
146
- name: 📢 Discord Success Notification
0 commit comments