Skip to content

Commit 4ba6ae3

Browse files
committed
Fix base64 decode
1 parent f438065 commit 4ba6ae3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ eval "$(ssh-agent -s)"
1515
# Ensure command traces are disabled while dealing with the private key
1616
[[ "$SHELLOPTS" =~ xtrace ]] && XTRACE_ON=1
1717
[[ "${XTRACE_ON:-}" ]] && set +o xtrace && echo "xtrace disabled"
18-
echo -e "$GITHUB_DEPLOY_PRIVATE_KEY" | ssh-add -
18+
base64 --decode <<< "$GITHUB_DEPLOY_PRIVATE_KEY" | ssh-add -
1919
[[ "${XTRACE_ON:-}" ]] && set -o xtrace && echo "xtrace reenabled"
2020

2121
# Configure git

0 commit comments

Comments
 (0)