tilde.club/deploy.sh
Elizabeth Hunt 23bffaa331
All checks were successful
continuous-integration/drone Build is passing
init
2024-03-09 00:56:16 -07:00

10 lines
172 B
Bash
Executable File

#!/bin/sh
set -e
echo $SSH_KEY | base64 -d >> /tmp/key
chmod -R 0600 /tmp/key
scp -o StrictHostKeyChecking=no -i /tmp/key -r dist/* $SSH_CONNECTION_STRING:~
rm /tmp/key