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

This commit is contained in:
2025-08-25 21:16:27 -04:00
parent 4cc5ee5c5b
commit 61984ef729
+5 -5
View File
@@ -89,13 +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 (with deps)
- name: Build wheels & install Home Assistant (future-proof)
run: |
python -m pip install --upgrade pip wheel
# 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}"
# Build wheels for HA and *all* optional dependencies
pip wheel --wheel-dir ~/.cache/pip "homeassistant[all]==${HA_VERSION}"
# Install everything from cached wheels
pip install --no-index --find-links ~/.cache/pip "homeassistant[all]==${HA_VERSION}"
- name: Gotify Notification (start check)
uses: eikendev/gotify-action@master
with: