We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f438065 commit 4ba6ae3Copy full SHA for 4ba6ae3
ci/deploy.sh
@@ -15,7 +15,7 @@ eval "$(ssh-agent -s)"
15
# Ensure command traces are disabled while dealing with the private key
16
[[ "$SHELLOPTS" =~ xtrace ]] && XTRACE_ON=1
17
[[ "${XTRACE_ON:-}" ]] && set +o xtrace && echo "xtrace disabled"
18
-echo -e "$GITHUB_DEPLOY_PRIVATE_KEY" | ssh-add -
+base64 --decode <<< "$GITHUB_DEPLOY_PRIVATE_KEY" | ssh-add -
19
[[ "${XTRACE_ON:-}" ]] && set -o xtrace && echo "xtrace reenabled"
20
21
# Configure git
0 commit comments