tilde.club/deploy.sh
Elizabeth Hunt dd76e71c0a
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing
rsync
2024-03-09 14:10:50 -07:00

15 lines
281 B
Bash
Executable File

#!/bin/sh
set -e
echo $SSH_KEY | base64 -d >> /tmp/key
chmod -R 0600 /tmp/key
for i in dist/*; do
echo "copying $i"
rsync -e "ssh -i /tmp/key -o StrictHostKeyChecking=no" -avz --delete $i $RSYNC_DESTINATION/$i
done
echo "finished copying to remote host..."
rm /tmp/key