All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
11 lines
212 B
Bash
Executable File
11 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p $HOME/.ssh
|
|
ssh-keyscan -t rsa $DEPLOY_HOST >> $HOME/.ssh/known_hosts
|
|
|
|
chown -R $(whoami) .
|
|
|
|
sshpass -p "$DEPLOY_PASSWORD" \
|
|
rsync -avzrO \
|
|
./public/ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH
|