From 04b6f4798be79fb9d32be349d7f301b898a8ab32 Mon Sep 17 00:00:00 2001 From: Jeffry Hesse Date: Tue, 5 Nov 2019 11:23:48 -0900 Subject: [PATCH] Extra yolo --- .circleci/ci-publish.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/ci-publish.sh b/.circleci/ci-publish.sh index 85e92a1..5cb8568 100755 --- a/.circleci/ci-publish.sh +++ b/.circleci/ci-publish.sh @@ -1,12 +1,12 @@ #!/usr/bin/env bash # Configure GIT with host fingerprint, user info and SSH key for pushing -mkdir -p ~/.ssh -echo "Adding github.com as known host..." -echo $GITHUB_FINGERPRINT >> ~/.ssh/known_hosts -echo "Setting private SSH key for pushing new version to repo..." -echo $GITHUB_COMMIT_KEY | base64 --decode >> ~/.ssh/id_rsa -chmod 400 ~/.ssh/id_rsa # prevents "UNPROTECTED PRIVATE KEY FILE" error +# mkdir -p ~/.ssh +# echo "Adding github.com as known host..." +# echo $GITHUB_FINGERPRINT >> ~/.ssh/known_hosts +# echo "Setting private SSH key for pushing new version to repo..." +# echo $GITHUB_COMMIT_KEY | base64 --decode >> ~/.ssh/id_rsa +# chmod 400 ~/.ssh/id_rsa # prevents "UNPROTECTED PRIVATE KEY FILE" error git config user.name "$GITHUB_USERNAME" git config user.email "$GITHUB_EMAIL"