copy old site
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
42033294db
commit
5552ad49da
15
.drone.yml
15
.drone.yml
|
@ -34,6 +34,9 @@ steps:
|
|||
from_secret: user
|
||||
SSH_KEY:
|
||||
from_secret: ssh_key
|
||||
HOST_DIR: /var/www/${HOST}
|
||||
BACKUP_DIR: ~/backups/${HOST}/${HOST}-${DRONE_STAGE_STARTED}
|
||||
|
||||
when:
|
||||
branch:
|
||||
- drone
|
||||
|
@ -52,7 +55,17 @@ steps:
|
|||
- echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||
|
||||
# run operations on remote host
|
||||
- ssh "$${USER}@$${HOST}" "neofetch"
|
||||
- host="$${USER}@$${HOST}"
|
||||
|
||||
- ssh $host "ls $${HOST_DIR}"
|
||||
- ssh $host "mkdir -p $${BACKUP_DIR}"
|
||||
- ssh $host "rsync -rP $${HOST_DIR}/* $${BACKUP_DIR}"
|
||||
|
||||
#- ssh $host 'echo "$host_dir -> $backup_dir"'
|
||||
#- ssh $host "mkdir -p $backup_dir"
|
||||
#- ssh $host "rsync -rP /var/www/${HOST}/* ${DRONE_STAGE_STARTED}"
|
||||
#- ssh $host "ls site"
|
||||
|
||||
#- ssh
|
||||
#- ssh "$${USER}@$${HOST}" "[[ ! -d ~/gemini/content ]] || rm -r ~/gemini/content"
|
||||
#- rsync -rP content "$${USER}@$${HOST}:gemini"
|
||||
|
|
Loading…
Reference in New Issue