Add housekeep task to delete the previous files for Production

This commit is contained in:
Kazuhiro MUSASHI 2020-01-19 17:21:15 +08:00
parent b65d5c07bd
commit 7ff60cf0bc
1 changed files with 15 additions and 1 deletions

View File

@ -20,13 +20,27 @@ steps:
- for TARGET in `find public/ -type f | egrep "\.(css|js|png|jpg|JPG|PNG|CSS|JS)$"`; do gzip -c ${TARGET} > ${TARGET}.gz; done
- for TARGET in `find public/ -type f | egrep "\.(css|js|png|jpg|JPG|PNG|CSS|JS)$"`; do rm -f ${TARGET}; done
- name: housekeep
image: appleboy/drone-ssh
settings:
host: 10.0.1.166
username: webadm
port: 10022
key:
from_secret: ssh_key
script:
- rm -rf /var/www/blog/*
- rm -rf /home/webadm/works/public/*
- name: scp
image: appleboy/drone-scp
settings:
host: 10.0.1.166
username: webadm
port: 10022
target: /var/www/blog
target:
- /var/www/blog
- /home/webadm/works/public
source: public/
key:
from_secret: ssh_key