From 132e06b6c849bb01f0dcc45ac07cd98db4ceedc2 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Sun, 31 Aug 2025 21:36:05 -0400 Subject: [PATCH] Tweak to Docker run command for HA check. --- action.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/action.yaml b/action.yaml index 2197bfa..93c9b1d 100644 --- a/action.yaml +++ b/action.yaml @@ -109,14 +109,12 @@ runs: if [[ -f "${{ inputs.env_file }}" ]]; then env_file_arg="--env-file ${{ inputs.env_file }}" fi - pwd - echo "Workspace dir is ${GITHUB_WORKSPACE}" docker run --rm \ --entrypoint "" \ - --volumes-from ${{ env.JOB_CONTAINER_NAME }} + --volumes-from ${{ env.JOB_CONTAINER_NAME }} \ $env_file_arg \ --workdir /github/workspace \ "ghcr.io/home-assistant/home-assistant:${{ steps.version.outputs.version }}" \ python -m homeassistant \ --config "${{ steps.check.outputs.path }}" \ - --script check_config + --script check_config \ No newline at end of file