diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 6e8f9c3fa..80e50d131 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -120,15 +120,17 @@ jobs: response=$(curl -sS -o homepage.html -w "%{http_code}" http://localhost:8000) if [ $response -eq 200 ]; then echo "Homepage is accessible" - if grep -q "Ship in Days Not Weeks" homepage.html; then + if grep -q "Ship in Days" homepage.html; then echo "Homepage contains expected content" else echo "Homepage doesn't contain expected content" + echo "Content of homepage.html:" cat homepage.html exit 1 fi else echo "Homepage is not accessible. HTTP status code: $response" + echo "Content of homepage.html:" cat homepage.html exit 1 fi \ No newline at end of file