We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f123b1f commit 12263f8Copy full SHA for 12263f8
.github/workflows/build.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Test if service is reachable
18
run: |
19
sleep 30
20
- curl -vsfL --retry 10 --retry-connrefused http://localhost:8000/
+ curl -v -s --retry 10 --retry-connrefused http://localhost:8000/
21
22
- name: Report error to Sentry
23
if: failure()
.github/workflows/deploy.yml
@@ -28,7 +28,7 @@ jobs:
28
29
- name: Test if website is reachable
30
31
- curl -vsfL --retry 10 --retry-connrefused ${{ secrets.WEBSITE_URL }}
+ curl -v -s --retry 10 --retry-connrefused ${{ secrets.WEBSITE_URL }}
32
33
34
0 commit comments