Wait for Home Assistant Core to start

This commit is contained in:
Stefan Agner 2025-10-27 12:36:48 +01:00
parent e4959b4f10
commit 5d9d33c9fa
No known key found for this signature in database
GPG Key ID: AE01353D1E44747D

View File

@ -320,6 +320,15 @@ jobs:
exit 1 exit 1
fi fi
- name: Wait for Home Assistant Core to start
run: |
echo "Waiting for Home Assistant Core to start"
timeout 10m ha supervisor logs -f -n 10000 -b 0 | grep -q "Detect a running Home Assistant instance"
if [ "$?" != "0" ]; then
echo "Home Assistant Core did not start within 10 minutes"
exit 1
fi
- name: Create full backup - name: Create full backup
id: backup id: backup
run: | run: |