From 72f585dff24ade60d8761bc891a260e7c2d696e0 Mon Sep 17 00:00:00 2001 From: ttionya Date: Thu, 4 Jun 2020 01:26:57 +0800 Subject: [PATCH] hotfix: fix can not find actions_*.sh files --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 29c87a1..a53857d 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,9 +3,9 @@ # Docker entrypoint.sh # Author: ttionya -. actions_functions.sh -. actions_push.sh -. actions_delete.sh +. /app/actions_functions.sh +. /app/actions_push.sh +. /app/actions_delete.sh TARGET_REPOSITORY=${INPUT_TARGET_REPOSITORY}