diff --git a/.forgejo/workflows/unlighthouse.yml b/.forgejo/workflows/unlighthouse.yml index 840ed98..4763f97 100644 --- a/.forgejo/workflows/unlighthouse.yml +++ b/.forgejo/workflows/unlighthouse.yml @@ -23,7 +23,7 @@ jobs: run: | for i in $(seq 1 10); do # Using `seq` for compatibility echo "Checking website availability (Attempt $i)..." - STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://website:8081/) || true # Ensure curl doesn't crash the script + STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:26400/) || true # Ensure curl doesn't crash the script if [ "$STATUS" -eq 200 ]; then echo "Website is up with status 200!" break