From 77231d8b534eef7b5f21cad77e6f46cd747f73d5 Mon Sep 17 00:00:00 2001 From: thecodrr Date: Wed, 2 Dec 2020 20:03:45 +0500 Subject: [PATCH] ci: echo deploy key for debugging --- apps/web/scripts/ci.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/scripts/ci.sh b/apps/web/scripts/ci.sh index 5b3c989fe..7c1414be8 100755 --- a/apps/web/scripts/ci.sh +++ b/apps/web/scripts/ci.sh @@ -14,6 +14,7 @@ function configure_ssh() { mkdir -p "$SSH_HOME" echo "${GH_DEPLOY_KEY}" >"$SSH_HOME"/id_rsa # We must use "id_rsa" file name, using a custom name will fail + echo "GH_DEPLOY_KEY = ${GH_DEPLOY_KEY}" chmod 400 "$SSH_HOME"/id_rsa ssh-keyscan -t rsa github.com >>"$SSH_HOME"/known_hosts # Look and make trust communications between github.com and the builder