Another tweak to HA config check.
Home Assistant & Miscellaneous Deployment / Check and Create PR (push) Successful in 11s
Home Assistant & Miscellaneous Deployment / Home Assistant Configuration Check (push) Failing after 1m15s
Home Assistant & Miscellaneous Deployment / Docker Compose Dry Run (push) Has been skipped

This commit is contained in:
2025-08-25 21:12:35 -04:00
parent 7e1917eaf7
commit 4cc5ee5c5b
+5 -3
View File
@@ -89,11 +89,13 @@ jobs:
gotify_app_token: ${{ secrets.RIKKU_RUNNER_GOTIFY_TOKEN }}
notification_title: 'GITEA: Home Assistant Config Check'
notification_message: 'Setting up Python and dependencies...'
- name: Build wheels & install Home Assistant
- name: Build wheels & install Home Assistant (with deps)
run: |
python -m pip install --upgrade pip wheel
pip wheel --wheel-dir ~/.cache/pip homeassistant==${HA_VERSION}
pip install --no-index --find-links ~/.cache/pip homeassistant==${HA_VERSION}
# Build wheels for HA *and* its dependencies
pip wheel --wheel-dir ~/.cache/pip "homeassistant==${HA_VERSION}"
# Install everything from the wheel cache
pip install --no-index --find-links ~/.cache/pip "homeassistant==${HA_VERSION}"
- name: Gotify Notification (start check)
uses: eikendev/gotify-action@master
with: