tilde.club/deploy.sh

11 lines
230 B
Bash
Raw Normal View History

2024-03-09 02:25:48 -05:00
#!/bin/sh
set -e
echo $SSH_KEY | base64 -d >> /tmp/key
2024-03-09 15:40:07 -05:00
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..."
2024-03-09 02:25:48 -05:00
rm /tmp/key