From cda33b879b93e58e8349285b9adde4b1cf231a28 Mon Sep 17 00:00:00 2001 From: Carles Pina i Estany Date: Thu, 14 Jul 2022 22:04:39 +0100 Subject: [PATCH] Action is more verbose (in order to help debugging) --- entrypoint.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index ae896fe..61c1c67 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -30,6 +30,8 @@ fi # and set up git (with GIT_CMD variable) and GIT_CMD_REPOSITORY if [ -n "${SSH_DEPLOY_KEY:=}" ] then + echo "[+] Using SSH_DEPLOY_KEY" + # Inspired by https://github.com/leigholiver/commit-with-deploy-key/blob/main/entrypoint.sh , thanks! mkdir --parents "$HOME/.ssh" DEPLOY_KEY_FILE="$HOME/.ssh/deploy_key" @@ -45,9 +47,10 @@ then elif [ -n "${API_TOKEN_GITHUB:=}" ] then + echo "[+] Using API_TOKEN_GITHUB" GIT_CMD_REPOSITORY="https://$DESTINATION_REPOSITORY_USERNAME:$API_TOKEN_GITHUB@$GITHUB_SERVER/$DESTINATION_REPOSITORY_USERNAME/$DESTINATION_REPOSITORY_NAME.git" else - echo "::error::API_TOKEN_GITHUB and SSH_DEPLOY_KEY are empty. Please fill one (recommended the SSH_DEPLOY_KEY" + echo "::error::API_TOKEN_GITHUB and SSH_DEPLOY_KEY are empty. Please fill one (recommended the SSH_DEPLOY_KEY)" exit 1 fi