Tweak to Docker run command for HA check.
Lint / yamllint (push) Successful in 6s
Release Drafter / ✏️ Draft release (push) Failing after 8s
Lint / Prettier (push) Successful in 18s
Test / Home Assistant Core Configuration Check (push) Failing after 24s

This commit is contained in:
2025-08-31 21:29:42 -04:00
parent f3fa97af99
commit 4aaee35741
+3 -1
View File
@@ -109,11 +109,13 @@ runs:
if [[ -f "${{ inputs.env_file }}" ]]; then if [[ -f "${{ inputs.env_file }}" ]]; then
env_file_arg="--env-file ${{ inputs.env_file }}" env_file_arg="--env-file ${{ inputs.env_file }}"
fi fi
pwd
echo "Workspace dir is ${GITHUB_WORKSPACE}"
docker run --rm \ docker run --rm \
--entrypoint "" \ --entrypoint "" \
--volumes-from ${{ env.JOB_CONTAINER_NAME }} --volumes-from ${{ env.JOB_CONTAINER_NAME }}
$env_file_arg \ $env_file_arg \
--workdir ${{ github.workspace }} \ --workdir /github/workspace \
"ghcr.io/home-assistant/home-assistant:${{ steps.version.outputs.version }}" \ "ghcr.io/home-assistant/home-assistant:${{ steps.version.outputs.version }}" \
python -m homeassistant \ python -m homeassistant \
--config "${{ steps.check.outputs.path }}" \ --config "${{ steps.check.outputs.path }}" \