diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7ba03b..1d626ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Test if service is reachable run: | sleep 30 - curl -v -s --retry 10 --retry-connrefused http://localhost:8000/ + curl -vsfL --retry 10 --retry-connrefused http://localhost:8000/ - name: Report error to Sentry if: failure() diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8d3576c..e3587ca 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,7 +28,7 @@ jobs: - name: Test if website is reachable run: | - curl -v -s --retry 10 --retry-connrefused ${{ secrets.WEBSITE_URL }} + curl -vsfL --retry 10 --retry-connrefused ${{ secrets.WEBSITE_URL }} - name: Report error to Sentry if: failure()