From 12a1abed42806c0da09f5a4b71afc3715d2041e7 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 13 Jan 2021 01:42:04 +0100 Subject: [PATCH] Override entry point and run interactive --- action.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 3fc0be0..ef21d14 100644 --- a/action.yaml +++ b/action.yaml @@ -95,7 +95,8 @@ runs: "homeassistant/home-assistant:${{ steps.version.outputs.version }}" \ python -m homeassistant --version - docker run --rm \ + docker run --rm -it \ + --entrypoint /bin/bash \ -v $(pwd):/github/workspace \ --workdir /github/workspace \ "homeassistant/home-assistant:${{ steps.version.outputs.version }}" \