From ed0ebb9072ae3a98cc962aa3598c0991c42146ba Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Fri, 20 Sep 2019 10:19:29 +0200 Subject: [PATCH] Log $PUSH_BRANCH value --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index c0c069e..323d820 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -27,6 +27,8 @@ then : ${PUSH_BRANCH:=`echo "$GITHUB_HEAD_REF" | awk -F / '{ print $3 }' `} + echo "Push Branch Value: $PUSH_BRANCH"; + # Switch to branch from current Workflow run git checkout -b $PUSH_BRANCH