Update '.drone.yml'
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Leon Etienne 2022-10-25 20:18:17 +00:00
parent 59d0daa35c
commit 4c3e0ec28c

View File

@ -11,7 +11,11 @@ steps:
SSH_PUB: SSH_PUB:
from_secret: ssh-pub from_secret: ssh-pub
commands: commands:
- cd "GCryptLib/doxygen" # - cd "GCryptLib/doxygen"
- apt-get update
- apt-get install ssh-agent
- eval "$(ssh-agent -s)" - eval "$(ssh-agent -s)"
- echo $SSH_PUB > foo.txt - mkdir -p ~/.ssh
- cat "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICK59J6gWwGGKN+xRye0qpIPDuZwj+Ja1TjrGUwMMlfe" - echo $SSH_PRIV > ~/.ssh/id_ed25519
- echo $SSH_PUB > ~/.ssh/id_ed25519.pub
- ssh-add ~/.ssh/id_ed25519