From 17279d092ce9b2636b1bd24b23219a2e284ddd67 Mon Sep 17 00:00:00 2001 From: Eric Johnson Date: Fri, 11 Oct 2019 09:46:19 -0400 Subject: [PATCH 1/3] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 18d5fc4..c365ee7 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,7 @@ inputs: runs: using: 'docker' image: 'Dockerfile' - entrypoint: 'entrypoint.sh' + entrypoint: './entrypoint.sh' env: DEBUG: ${{ inputs.debug }} From 16c998ef2bd8d07a69facf4e972ad62fb7b15440 Mon Sep 17 00:00:00 2001 From: Eric Johnson Date: Fri, 11 Oct 2019 09:55:33 -0400 Subject: [PATCH 2/3] Update action.yml Remove entry point directive since the Dockerfile has it already. --- action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/action.yml b/action.yml index c365ee7..ec4eaa8 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,6 @@ inputs: runs: using: 'docker' image: 'Dockerfile' - entrypoint: './entrypoint.sh' env: DEBUG: ${{ inputs.debug }} From 45f0e88cb92eb69834082003fed63e26a24614b9 Mon Sep 17 00:00:00 2001 From: Eric Johnson Date: Fri, 11 Oct 2019 10:05:44 -0400 Subject: [PATCH 3/3] Update action.yml Maybe we do need the entry point. --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index ec4eaa8..d732f4d 100644 --- a/action.yml +++ b/action.yml @@ -12,6 +12,7 @@ inputs: runs: using: 'docker' image: 'Dockerfile' + entrypoint: '/app/entrypoint.sh' env: DEBUG: ${{ inputs.debug }}