From 4aaee35741da7460e41614fe20a99ba3460ae19c Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Sun, 31 Aug 2025 21:29:42 -0400 Subject: [PATCH] Tweak to Docker run command for HA check. --- action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index f656631..2197bfa 100644 --- a/action.yaml +++ b/action.yaml @@ -109,11 +109,13 @@ 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 }} $env_file_arg \ - --workdir ${{ github.workspace }} \ + --workdir /github/workspace \ "ghcr.io/home-assistant/home-assistant:${{ steps.version.outputs.version }}" \ python -m homeassistant \ --config "${{ steps.check.outputs.path }}" \