tilde.club/deploy.sh
Elizabeth Hunt 6a4fc2d151
Some checks failed
continuous-integration/drone/push Build is failing
rsync
2024-03-09 14:35:46 -07:00

22 lines
469 B
Bash
Executable File

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