|
|
|
@ -16,7 +16,7 @@ local custom_clone = {
|
|
|
|
|
name: 'Clone Repo',
|
|
|
|
|
environment: { CLONE_KEY: { from_secret: 'CLONE_KEY' } },
|
|
|
|
|
commands: [
|
|
|
|
|
'set -x', // Disable execution output
|
|
|
|
|
'set +x', // Disable execution output
|
|
|
|
|
|||
|
|
|
|
|
if [ -z "$CLONE_KEY" ]; then
|
|
|
|
|
echo -e "\n\n\n\e[31;1mUnable to checkout repo: CLONE_KEY not set\e[0m"
|
|
|
|
@ -24,7 +24,7 @@ local custom_clone = {
|
|
|
|
|
fi
|
|
|
|
|
|||,
|
|
|
|
|
'eval "$(ssh-agent -s)"',
|
|
|
|
|
'echo "${CLONE_KEY}" | ssh-add -',
|
|
|
|
|
'echo "$CLONE_KEY" | ssh-add -',
|
|
|
|
|
'mkdir -p ~/.ssh && touch ~/.ssh/config && touch ~/.ssh/known_hosts && chmod -R 400 ~/.ssh',
|
|
|
|
|
'git init',
|
|
|
|
|
'git remote add origin $DRONE_GIT_SSH_URL',
|
|
|
|
|