Elizabeth Hunt
fac01f511c
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
230 B
Bash
Executable File
11 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo $SSH_KEY | base64 -d >> /tmp/key
|
|
|
|
chmod -R 0600 /tmp/key
|
|
rsync -e "ssh -i /tmp/key -o StrictHostKeyChecking=no" -avz --delete dist/. $RSYNC_DESTINATION
|
|
echo "finished copying to remote host..."
|
|
rm /tmp/key
|