From 4cc5ee5c5bd8c484deb3cf2380fb442b274ed5ec Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Mon, 25 Aug 2025 21:12:35 -0400 Subject: [PATCH] Another tweak to HA config check. --- .gitea/workflows/home-assistant-deploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/home-assistant-deploy.yml b/.gitea/workflows/home-assistant-deploy.yml index b08cb29..4561498 100644 --- a/.gitea/workflows/home-assistant-deploy.yml +++ b/.gitea/workflows/home-assistant-deploy.yml @@ -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: