From 72a3f3df5772b8c0c7642ed8d23fac4031dd2787 Mon Sep 17 00:00:00 2001 From: Alex Savin Date: Fri, 7 Feb 2025 16:12:47 -0500 Subject: [PATCH] More changes --- .github/workflows/build.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7a76a64..aff6de0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,6 +24,11 @@ jobs: pwd ls -la + sudo mkdir -p ./custom_components + pwd + cd /tmp + git clone https://github.com/custom-components/sensor.unifigateway.git unifigateway + sudo cp -r ./unifigateway/custom_components/unifigateway /home/runner/work/home-assistant-conf/home-assistant-conf/custom_components/unifigateway # git checkout $(git describe --tags --always $(git rev-list --tags --max-count=1000) | grep -e "[0-9]\+\.[0-9]\+\.[0-9]\+$" | head -n 1) - name: Install system libs and dependencies @@ -57,18 +62,21 @@ jobs: - name: Install Python packages (Hass.IO) run: | + pip search homeassistant pip install yq jq pip install homeassistant echo "Installing numpy, requered by Component: mobile_app, stream and camera\n" pip install numpy echo "Installing hassil, requered by Component: mobile_app\n" pip install hassil - echo "Installing numpy, requered by Component: python_script\n" + echo "Installing home_assistant_intents, requered by Component: mobile_app\n" + pip install home_assistant_intents + echo "Installing RestrictedPython, requered by Component: python_script\n" pip install RestrictedPython - echo "Installing numpy, requered by Component: twilio\n" + echo "Installing twilio, requered by Component: twilio\n" pip install twilio - echo "Installing numpy, requered by Component: telegram_bot\n" - pip install telegram + echo "Installing python-telegram-bot, requered by Component: telegram_bot\n" + pip install python-telegram-bot echo "Installing pyeiscp, requered by Component: onkyo\n" pip install pyeiscp echo "Installing async_upnp_client, requered by Component: ssdp\n"