try again

This commit is contained in:
Kenneth Kehl
2023-09-13 11:27:15 -07:00
parent 5f84cd1bbe
commit ddaee26074

View File

@@ -64,7 +64,7 @@ jobs:
- name: Health check
run: |
response=$(curl -url ${{secrets.NOTIFY_E2E_TEST_URI}}_status -u "${{ secrets.NOTIFY_E2E_TEST_HTTP_AUTH_USER }}:${{ secrets.NOTIFY_E2E_TEST_HTTP_AUTH_PASSWORD }}")
if [$response == *"ok"*]; then
if grep -q "ok" <<< "$response"; then
echo "Health check failed"
exit 1
else