ci: Retry with secrets
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Glenn Y. Rolland 2023-02-21 13:17:38 +01:00
parent f9dd284042
commit 175a0b9fcf

View file

@ -80,9 +80,9 @@ steps:
- echo $SSH_PRIVATE_KEY
- apk update && apk add openssh-client
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
- 'echo "${SSH_PRIVATE_KEY}" | base64 -d > ~/.ssh/deploy_key'
- echo "$SSH_PRIVATE_KEY" | base64 -d > ~/.ssh/deploy_key
- chmod 600 ~/.ssh/deploy_key
- 'ssh -i ~/.ssh/deploy_key ${SSH_USER}@${SSH_HOST} ls -l /'
- ssh -i ~/.ssh/deploy_key "$SSH_USER@$SSH_HOST" ls -l /
# volumes:
# - name: cache